forked from ArcadiaPower/arc-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "counterfactual-bill-calculation-quickstart-server",
"version": "0.1.0",
"description": "Implementation details for calculating a counterfactual bill",
"scripts": {
"build": "./scripts/build.sh",
"start": "concurrently \"node ./server\" \"PORT=8090 BROWSER=none react-scripts start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.21.2",
"concurrently": "^6.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.5",
"humps": "^2.0.1",
"react": "^16.14.0",
"react-dom": "^17.0.2",
"react-json-pretty": "^2.2.0",
"react-modal": "^3.15.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"styled-components": "^5.3.5",
"web-vitals": "^1.1.2"
},
"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"
]
}
}