generated from gabrielduete/frontend-template-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.58 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
{
"name": "frontend-template-nextjs",
"version": "0.1.0",
"private": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn eslint --fix",
"yarn test --bail"
]
},
"lint-prepush": {
"tasks": {
"*.{js,jsx,ts,tsx}": [
"npx prettier --check",
"yarn lint:pre-push",
"stylelint",
"jest --bail"
]
}
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.9"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.7.14",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.3",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.27",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.3",
"typescript": "4.8.2"
}
}