-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "todomvc",
"version": "0.0.1",
"private": true,
"devDependencies": {
"axios": "^0.18.0",
"concurrently": "^4.1.0",
"json-server": "^0.14.2",
"lodash": "^4.17.11",
"react-scripts": "^2.1.3",
"react-test-renderer": "^16.3.1",
"redux-saga": "^1.0.0",
"require-uncached": "^2.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"redux": "^3.5.2",
"reselect": "^3.0.1",
"todomvc-app-css": "^2.1.1"
},
"scripts": {
"start": "concurrently 'npm:frontend' 'npm:api'",
"frontend": "PORT=5000 REACT_APP_API_URL=http://localhost:3000 react-scripts start",
"api": "node --inspect server.js",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "react-scripts test --env=node"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://localhost:3000/"
}