-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
38 lines (38 loc) · 935 Bytes
/
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": "sanguosha",
"version": "0.1.0",
"private": true,
"dependencies": {
"boardgame.io": "0.43.0",
"classnames": "^2.2.6",
"esm": "^3.2.25",
"koa-static": "^5.0.0",
"node-persist": "^3.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^3.4.4",
"react-spring": "^8.0.27",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"cross-env": "^7.0.3"
},
"scripts": {
"start": "cross-env REACT_APP_LOCAL=true react-scripts start",
"build": "react-scripts build",
"client": "cross-env REACT_APP_PROXY=http://localhost:8098 react-scripts start",
"server": "cross-env PORT=8098 node -r esm src/server/server.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}