-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"private": true,
"scripts": {
"start": "roadhog server",
"build": "roadhog build",
"clean": "rimraf ./dist",
"dev": "webpack-dev-server --progress --config ./webpack.dev.config.js",
"build-dev": "npm run clean && set BUILD_ENV=dev && webpack -p --progress --config ./webpack.build.config.js",
"build-test": "npm run clean && BUILD_ENV=test && webpack -p --progress --config ./webpack.build.config.js",
"build-prod": "npm run clean && BUILD_ENV=prod && webpack -p --progress --config ./webpack.build.config.js"
},
"engines": {
"install-node": "6.9.2"
},
"dependencies": {
"antd": "^2.12.1",
"babel-runtime": "^6.9.2",
"classnames": "^2.2.5",
"dva": "^1.2.1",
"dva-loading": "^0.2.1",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^2.28.0",
"jquery": "^1.12.4",
"lodash": "^4.17.4",
"normalize.css": "^5.0.0",
"nzh": "^1.0.0",
"rc-queue-anim": "^1.0.1",
"react": "^15.6.1",
"react-document-title": "^2.0.3",
"react-dom": "^15.6.1",
"react-images": "^0.5.4",
"react-quill": "^1.0.0"
},
"devDependencies": {
"autoprefixer": "^6.7.0",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dva-hmr": "^0.3.2",
"babel-plugin-import": "^1.1.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.22.0",
"css-loader": "^0.26.1",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.10.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.26.0",
"husky": "^0.12.0",
"imagemin-webpack-plugin": "^1.4.4",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"node-sass": "^4.7.2",
"postcss-loader": "^1.3.0",
"react-dom": "^15.6.1",
"redbox-react": "^1.3.2",
"rimraf": "^2.5.4",
"roadhog": "^0.5.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-bundle-analyzer": "^2.3.0",
"webpack-dev-server": "^1.16.2"
}
}