-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "pikmin2-website",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet"
},
"dependencies": {
"axios": "^0.27.2",
"next": "^12.2.4",
"papaparse": "^5.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"recharts": "2.1.12",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/papaparse": "^5.3.3",
"@types/react": "^18.0.15",
"@types/styled-components": "^5.1.20",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}