-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.95 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
{
"name": "webpack4",
"version": "1.0.0",
"description": "webpack4.0 note",
"main": "webpack.config.js",
"dependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-router-dom": "^4.3.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^9.1.5",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"url-loader": "^1.1.1",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9",
"webpack-parallel-uglify-plugin": "^1.1.0"
},
"scripts": {
"dev": "webpack-dev-server --mode development --colors --progress --config webpack.config.dev.js",
"pro": "webpack --mode production --config webpack.config.pro.js --progress --json > stats.json",
"dll": "webpack --config webpack_dll.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LPink777/Webpack4.git"
},
"keywords": [
"webpack"
],
"author": "FF",
"license": "ISC",
"bugs": {
"url": "https://github.com/LPink777/Webpack4/issues"
},
"homepage": "https://github.com/LPink777/Webpack4#readme"
}