-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "icpc-sinchon.github.io",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev -p 4789",
"build": "next build",
"export": "next export",
"start": "next start -p 4789",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add -f out/ && git commit -m \"Deploy Next.js\" && git subtree push --prefix out origin gh-pages",
"pretty:check": "prettier -c .",
"pretty:fix": "prettier -w .",
"eslint:check": "eslint --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"eslint:fix": "eslint --fix --max-warnings=0 './**/*.{js,jsx,ts,tsx}'",
"prepare": "husky install"
},
"dependencies": {
"babel-plugin-styled-components": "^1.12.0",
"classnames": "^2.2.6",
"next": "^10.0.0",
"next-redux-wrapper": "^6.0.2",
"react": "^17.0.1",
"react-dom": "17.0.1",
"react-protected-mailto": "^1.0.3",
"react-redux": "^7.2.3",
"redux": "^4.0.5",
"sass": "^1.32.8",
"styled-components": "^5.2.1",
"swr": "^0.5.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"redux-devtools-extension": "^2.13.9"
},
"engines": {
"node": ">=16 <17"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}