-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "magic-maze",
"version": "0.1.0",
"private": true,
"dependencies": {
"boardgame.io": "^0.43.3",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.1",
"react-easy-panzoom": "^0.4.4",
"react-scripts": "4.0.1",
"react-spring": "^9.2.3",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.170",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/redux-logger": "^3.0.8",
"cross-env": "^7.0.3",
"typescript": "^4.1.3"
},
"scripts": {
"start": "cross-env REACT_APP_LOCAL=true react-scripts start",
"build": "react-scripts build && tsc --module commonjs --noEmit false --outDir dist",
"client": "cross-env REACT_APP_PROXY=http://localhost:9100 react-scripts start",
"server": "cross-env PORT=9100 node ./dist/server/server.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}