forked from kronick/drawing-in-space
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "drawing-in-space",
"version": "0.1.0",
"private": true,
"dependencies": {
"lodash": "^4.17.21",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "^3.4.1"
},
"devDependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "npm run start:full",
"start:a": "npm-run-all --parallel start:server:a start:client",
"start:b": "npm-run-all --parallel start:server:b start:client",
"start:full": "npm-run-all --parallel start:server start:client",
"start:client": "react-scripts start",
"start:server": "node src/server.js",
"start:server:a": "cross-env NETWORK=a npm run start:server",
"start:server:b": "cross-env NETWORK=b npm run start:server",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}