-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.36 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
{
"private": true,
"scripts": {
"lint": "eslint --fix --ext .js ./src",
"dev": "webpack --watch --config ./config/webpack.dev.conf.js --mode development ",
"build": "webpack --config ./config/webpack.prod.conf.js --mode production ",
"dll": "webpack --config ./config/webpack.dll.conf.js --mode production",
"dll-dev": "webpack --config ./config/webpack.dll.conf.js --mode development",
"server": "./node_modules/.bin/browser-sync start --server --port 9090 --no-ui --startPath public/index.html --files **/*.html --no-ghost-mode --no-notify",
"analyse": "webpack --config ./config/webpack.analysis.conf.js --mode development"
},
"dependencies": {
"antd": "^3.12.4",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"braft-editor": "^2.2.9",
"dva": "^2.4.1",
"dva-loading": "^2.0.6",
"hashids": "2.0.1",
"immutable": "^3.8.2",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"moment": "^2.24.0",
"qs": "^6.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-sortablejs": "^1.5.1",
"react-swipeable-views": "^0.13.1",
"sortablejs": "^1.6.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"browser-sync": "^2.24.6",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"cssnano": "^4.1.8",
"eslint": "^4.14.0",
"eslint-config-umi": "^0.1.5",
"eslint-loader": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"file-loader": "^1.1.11",
"hoist-non-react-statics": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"progress-bar-webpack-plugin": "^1.11.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.2"
}
}