-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "rjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --hot --history-api-fallback",
"compile": "webpack --progress -p",
"test": "echo \"Error: no test specified\" && exit 1",
"env:prod": "cross-env NODE_ENV=production",
"build": "npm run env:prod -- webpack"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.0",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"path": "^0.12.7",
"radium": "^0.18.2",
"react": "^15.5.4",
"react-bootstrap": "^0.30.10",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-promise-middleware": "^4.3.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}