-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build && next export",
"deploy": "next build && touch out/.nojekyll && git add out/ && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages",
"prepare": "husky install",
"test": "npx eslint --fix ."
},
"dependencies": {
"bootstrap": "^5.2.3",
"husky": "^8.0.2",
"next": "latest",
"react": "latest",
"react-bootstrap": "^2.6.0",
"react-div-100vh": "^0.7.0",
"react-dom": "latest",
"react-icons": "^4.6.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "18.2.39",
"@types/react-helmet": "^6.1.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.42.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.33.2",
"lint-staged": "^15.1.0"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
}
}