-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 987 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
41
42
43
{
"name": "site",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "husky install"
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"next": "^12.0.10",
"next-i18next": "^11.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.2.0",
"recharts": "2.1.12",
"sass": "^1.49.7"
},
"devDependencies": {
"@types/node": "^16",
"@types/react": "^18.0.0",
"autoprefixer": "^10.2.6",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-next": "^12.0.10",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.6",
"prettier": "^2.1.1",
"shelljs": "^0.8.4",
"tailwindcss": "^3.0.18",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx|json|css|md)": [
"prettier --write"
]
}
}