-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "reactjs-universal-project",
"version": "1.0.0",
"scripts": {
"build": "rimraf build && NODE_ENV=production webpack --config ./config/webpack.config.js",
"dev": "NODE_ENV=dev webpack-dev-server --host 0.0.0.0 --colors --content-base ./build --config ./config/webpack.config.js"
},
"dependencies": {
"antd": "^2.7.1",
"antd-mobile": "^0.9.15",
"autoprefixer": "^6.7.2",
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-antd": "^0.5.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-display-name": "^6.5.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.23.1",
"cssnext": "^1.8.4",
"extract-text-webpack-plugin": "^1.0.1",
"less-loader": "^2.2.3",
"postcss-calc": "^5.3.1",
"postcss-loader": "^1.3.0",
"precss": "^1.4.0",
"react": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-addons-transition-group": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.0.2",
"react-hammerjs": "^0.5.0",
"react-hot-loader": "^1.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.4.0",
"react-router-redux": "^4.0.4",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.3",
"redux": "^3.5.2",
"redux-thunk": "^2.2.0",
"rimraf": "^2.5.2",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.0.0",
"superagent": "^3.4.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"babel-plugin-import": "^1.1.0",
"expect": "^1.18.0",
"expect-jsx": "^2.5.1",
"file-loader": "^0.10.0",
"react-addons-test-utils": "^15.0.2",
"url-loader": "^0.5.7"
}
}