-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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": "test",
"version": "0.1.0",
"private": true,
"dependencies": {
"color": "^2.0.1",
"express": "^4.16.2",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^1.2.0",
"lodash": "^4.17.4",
"material-ui": "^1.0.0-beta.21",
"material-ui-icons": "^1.0.0-beta.17",
"qs": "^6.5.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-scripts": "1.0.17",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"remove-accents": "^0.4.2"
},
"proxy": "http://localhost:3001/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"app": "concurrently \"npm run launch:server\" \"npm run launch:client\"",
"launch:client": "react-scripts start",
"launch:server": "npm run babel-node src/server/server.js",
"babel-node": "babel-node --presets=es2015 "
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^3.5.0"
}
}