generated from mantinedev/next-pages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "mantine-next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"export": "next build && next export",
"lint": "next lint",
"lint:eslint:quiet": "eslint --ext .ts,.tsx,.js,.jsx ./ --no-error-on-unmatched-pattern --quiet",
"format": "prettier --config .prettierrc.json './*.ts' './*.tsx' --write"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@mantine/core": "3.6.7",
"@mantine/dates": "3.6.7",
"@mantine/hooks": "3.6.7",
"@mantine/next": "3.6.7",
"@mantine/notifications": "3.6.7",
"@mantine/prism": "3.6.7",
"@types/react-router-dom": "^5.3.3",
"dayjs": "^1.10.7",
"framer-motion": "^6.2.6",
"lodash": "^4.17.21",
"next": "12.0.7",
"node-sass": "^7.0.1",
"prism-react-renderer": "^1.2.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "^6.2.1",
"react-typed": "^1.2.0",
"sass": "^1.49.7"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@mantine/eslint-config": "3.6.7",
"@next/bundle-analyzer": "^12.0.7",
"@types/lodash": "^4.14.178",
"@types/react": "17.0.37",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"commitlint-config-jira": "^1.5.2",
"commitlint-plugin-jira-rules": "^1.5.1",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.3.4",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"typescript": "4.5.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"pretty-quick — staged",
"git add"
]
},
"pre-commit": "lint-staged"
}