-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 982 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
39
40
41
42
43
44
45
{
"name": "scrumcards",
"version": "0.1.0",
"private": true,
"engines": {
"node": "12.16.1",
"npm": "6.13.4"
},
"dependencies": {
"classnames": "^2.2.6",
"express": "^4.17.1",
"express-ws": "^4.0.0",
"rcolor": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-feather": "^2.0.3",
"react-scripts": "3.4.1",
"react-textfit": "^1.1.0",
"uifx": "^2.0.7",
"uuid": "^7.0.2"
},
"scripts": {
"prestart": "npm run build",
"server": "node ./server/server.js",
"start": "npm run server",
"dev": "REACT_APP_PORT=3300 react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}