-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "statechanges",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.6.0",
"compression": "^1.7.4",
"concurrently": "^6.0.1",
"cors": "^2.8.5",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"fetch-mock": "^9.11.0",
"helmet": "^4.4.1",
"isomorphic-fetch": "^3.0.0",
"loopback": "^3.28.0",
"loopback-boot": "^3.3.1",
"loopback-component-explorer": "^6.5.1",
"loopback-connector-postgresql": "^5.3.0",
"loopback-remote-routing": "^1.5.2",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-bootstrap": "^1.5.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.2",
"react-test-utils": "0.0.1",
"reactstrap": "^8.9.0",
"serve-favicon": "^2.5.0",
"sinon": "^10.0.1",
"strong-error-handler": "^4.0.0"
},
"devDependencies": {
"react-scripts": "^4.0.3"
},
"scripts": {
"start": "concurrently --kill-others \"npm run start-server\" \"npm run start-client\"",
"start-client": "react-scripts start ",
"start-server": "node ./api_server",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}