-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 980 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
35
36
37
38
39
40
41
42
{
"name": "my-amazing-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"develop": "node_modules/.bin/webpack-dev-server --content-base public --port 3000 --hot --inline",
"start": "node start.js",
"build": "webpack",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.12.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"express": "^4.13.4",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"serve-static": "^1.10.3",
"webpack": "^1.12.10",
"webpack-dev-server": "^1.14.0"
},
"engines": {
"node": "5.3.x"
},
"babel": {
"presets": [
"es2015",
"react"
]
}
}