-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.76 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
80
81
82
83
84
85
86
87
88
89
90
{
"name": "webpacktemplate",
"description": "webpack4+",
"version": "1.0.0",
"author": "renjiazheng you@example.com",
"license": "MIT",
"private": true,
"scripts": {
"dev": "webpack-dev-server --hot --inline --open --config webpack.config.js --debug --colors --display-error-details ",
"pre": "NODE_ENV=cdnpre PARAMS_SETTING=ok webpack -p --progress --colors --config webpack.config.js --debug",
"prod": "NODE_ENV=production PARAMS_SETTING=ok webpack -p --progress --colors --config webpack.config.js"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-display-name": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.8.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"autodll-webpack-plugin": "^0.4.2",
"autoprefixer": "^9.3.1",
"cache-loader": "^1.2.4",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"css-loader": "^1.0.1",
"cssnano": "^4.1.7",
"file-loader": "^2.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.0",
"hard-source-webpack-plugin": "^0.12.0",
"html-loader": "^0.5.5",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"imagemin-webpack-plugin": "^2.3.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.4",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"postcss-pxtorem": "^4.0.1",
"resolve-url-loader": "^3.0.0",
"scss-loader": "0.0.1",
"size-plugin": "^1.0.1",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"svg-inline-loader": "^0.8.0",
"thread-loader": "^1.2.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.0.1",
"webpack": "^4.12.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dashboard": "^2.0.0",
"webpack-dev-server": "^3.1.4",
"webpack-manifest-plugin": "^2.0.3"
},
"browserslist": [
"last 4 versions",
"> 0.2%",
"Firefox ESR",
"iOS >= 8",
"Android >= 4.1",
"not ie <= 8"
]
}