-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "webpack4",
"sideEffects": [
"*.css"
],
"version": "1.0.0",
"private": true,
"description": "webpack version4",
"scripts": {
"bundle": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server",
"server": "node server.js",
"dev-build": "webpack --profile --json > stats.json --config ./webpack.dev.js",
"dev": "webpack-dev-server --config ./webpack.dev.js",
"build": "webpack --config ./webpack.prod.js",
"build:dll": "webpack --config ./webpack.dll.js",
"analyz": "cross-env NODE_ENV=production npm_config_report=true npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Jack-cool/webpack4.git"
},
"author": "fengshuan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"add-asset-html-webpack-plugin": "^3.1.3",
"autoprefixer": "^9.6.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"express": "^4.17.1",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"imports-loader": "^0.8.0",
"jquery": "^3.4.1",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^2.0.0",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.3",
"webpack-dev-middleware": "^3.7.0",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"core-js": "3",
"lodash": "^4.17.11"
}
}