-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.93 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.93 KB
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
74
75
76
77
78
79
{
"name": "web_app",
"version": "1.0.0",
"description": "this is web app project",
"main": "index.js",
"scripts": {
"dll": "webpack --config utils/dll.config.js --mode development",
"dev": "webpack-dev-server --config build/webpack.config.dev.js --mode development --progress --colors --inline --hot",
"dev:test": "webpack-dev-server --config build/webpack.config.dev.js --mode development --progress --colors --inline --hot",
"dev:local": "webpack-dev-server --config build/webpack.config.dev.js --mode development --progress --colors",
"dev:online": "webpack-dev-server --config build/webpack.config.dev.js --mode development --progress --colors",
"build": "webpack --config build/webpack.config.prod.js --mode production --progress",
"build:analyzer": "webpack --config build/webpack.config.prod.js --mode production --progress"
},
"repository": {
"type": "git",
"url": "http://gitlab.alibaba-inc.com/rds_partition/incubator-api.git"
},
"keywords": [
"web app"
],
"author": "zhangzhen",
"license": "ISC",
"dependencies": {
"antd-mobile": "^2.2.9",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-redux": "^6.0.1",
"react-router": "^4.3.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.3.4",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.11.0",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.0.1",
"css-loader": "^1.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"fs": "0.0.1-security",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.7.1",
"less-loader": "^4.1.0",
"less-plugin-clean-css": "^1.5.1",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"react-hot-loader": "^4.3.4",
"style-loader": "^0.21.0",
"uglify-js-plugin": "0.0.6",
"uglifyjs-webpack-plugin": "^2.1.2",
"url-loader": "^1.0.1",
"webpack": "^4.16.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.4"
}
}