-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 896 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
{
"name": "create-react-app",
"version": "4.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start:server": "node ./server/app"
},
"dependencies": {
"@material-ui/core": "latest",
"@material-ui/lab": "^4.0.0-alpha.39",
"clsx": "latest",
"lodash-es": "^4.17.21",
"react": "latest",
"react-dom": "latest",
"react-scripts": "latest",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"digest-fetch": "^1.0.9",
"express": "^4.17.3",
"node-fetch": "^2.6.7",
"qs": "^6.10.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}