-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 833 Bytes
/
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
{
"name": "automation-demo",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-watch": "^2.0.6",
"concurrently": "^3.4.0",
"react-scripts": "0.9.4"
},
"dependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"compression": "^1.6.2",
"express": "^4.15.2",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"request": "^2.81.0"
},
"proxy": "http://localhost:8081",
"scripts": {
"bluemix": "babel-node index.js",
"start": "concurrently \"PORT=8080 react-scripts start\" \"PORT=8081 babel-watch index.js\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}