-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.12 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.12 KB
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
{
"name": "node-react-app",
"version": "1.0.0",
"scripts": {
"install-server": "cd client && npm install",
"install-client": "cd api && npm install",
"install-all": "npm install && concurrently \"npm run install-client\" \"npm run install-server\"",
"client": "cd client && npm start",
"server": "cd api && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "eslint . --ignore-pattern='client/node_modules/*' --ignore-pattern='api/node_modules/*'",
"lint:fix": "eslint . --ignore-pattern='client/node_modules/*' --ignore-pattern='api/node_modules/*' --fix"
},
"devDependencies": {
"concurrently": "^4.0.1",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-config-wesbos": "^1.0.1",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-jsx-control-statements": "^2.2.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1"
}
}