-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "cric_analysis",
"version": "0.1.0",
"private": true,
"devDependencies": {
"concurrently": "^6.0.0",
"enzyme": "^3.11.0",
"nodemon": "^2.0.7",
"react-scripts": "4.0.3"
},
"dependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.0",
"alasql": "^1.7.2",
"antd": "^4.15.0",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"express": "^4.17.1",
"fs-promise": "^2.0.3",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-responsive": "^8.2.0",
"recharts": "^2.0.9"
},
"scripts": {
"build": "react-scripts build",
"start": "NODE_ENV=production node server/app.js",
"dev": "concurrently --kill-others \"react-scripts start\" \"nodemon --watch server --debug=32836 --nolazy server/app.js\"",
"node": "nodemon --harmony server/app.js",
"nodebug": "nodemon --debug=32836 --nolazy --harmony server/app.js",
"react": "react-scripts start",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}