-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 805 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 805 Bytes
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
{
"name": "study-react",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:": "run-p -c lint:*",
"lint:eslint": "eslint --ext .jsx,.js .",
"lint:prettier": "prettier --check .",
"fix": "run-s -c fix:eslint fix:prettier",
"fix:eslint": "eslint --ext .jsx,.js . --fix",
"fix:pretteier": "pretttier --write ."
},
"dependencies": {
"next": "12.0.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
}
}