forked from ruanyf/jstraining
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
41
42
43
{
"name": "redux-demo",
"version": "1.0.0",
"description": "",
"main": "app/main.jsx",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"start": "webpack-dev-server --devtool eval --progress --hot --content-base app",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"deploy-windows": "SET NODE_ENV=production & webpack -p --config webpack.production.config.js"
},
"dependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-runtime": "6.x",
"react": "15.x",
"react-dom": "15.x",
"react-redux": "^4.4.5",
"redux": "^3.6.0"
},
"devDependencies": {
"babel-core": "6.x",
"babel-eslint": "6.x",
"babel-loader": "6.x",
"babel-plugin-transform-runtime": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-0": "6.x",
"copy-webpack-plugin": "latest",
"css-loader": "~0.23.0",
"open-browser-webpack-plugin": "0.0.2",
"style-loader": "~0.13.0",
"webpack": "1.x",
"webpack-dev-server": "1.x"
},
"keywords": [
"es6",
"web app",
"boilerplate"
],
"author": "Ruan Yifeng",
"license": "MIT"
}