-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:fix && next lint",
"lint:fix": "eslint --fix \"**/*.{js,jsx}\" --config \"./.eslintrc.json\" --ignore-path \"./.eslintignore\"",
"format:check": "prettier --list-different --config \"./.prettierrc\" --ignore-path \"./.prettierignore\" --no-error-on-unmatched-pattern \"./.\"",
"format": "prettier --write --config \"./.prettierrc\" --ignore-path \"./.prettierignore\" --no-error-on-unmatched-pattern \"./.\""
},
"lint-staged": {
"*.{js,jsx}": [
"yarn lint:fix"
]
},
"dependencies": {
"eslint": "8.37.0",
"eslint-config-next": "13.2.4",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-spring": "^9.7.1",
"styled-components": "^5.3.9"
},
"devDependencies": {
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7"
}
}