-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 968 Bytes
/
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
{
"name": "fts-month",
"version": "0.0.1",
"license": "SEE LICENSE IN LICENSE FILE",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint-staged": "npx lint-staged",
"lint": "npx eslint ./src"
},
"lint-staged": {
"*.{js,jsx}": "npx eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"next": "^12.0.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scroll": "^1.8.4"
},
"devDependencies": {
"clean-css": "^5.2.4",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
}
}