-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.74 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
{
"name": "webpack-test-demo",
"version": "1.1.0",
"main": "index.js",
"private": "<%=private%>",
"autor": "<%=author%>",
"description": "<%=description%>",
"license": "<%=license%>",
"scripts": {
"build:dev": " webpack --mode development ",
"build:prod": " webpack --mode production ",
"dev": " webpack --mode development ",
"dev2": " cross-env NODE_ENV='development' --mode development webpack-dev-server --config webpack.dev.js ",
"build2": " cross-env NODE_ENV='production' --mode development webpack --config webpack.prod.js ",
"analyz": "webpack-bundle-analyzer --port 888 ./dist/stats.json"
},
"keywords": [],
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.0",
"@babel/runtime-corejs3": "^7.6.0",
"antd": "^3.23.2",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.12.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.1",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"friendly-errors-webpack-plugin": "^1.7.0",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-safe-parser": "^4.0.1",
"purgecss-webpack-plugin": "^1.6.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"speed-measure-webpack-plugin": "^1.3.1",
"style-loader": "^1.0.0",
"webpack": "^4.40.2",
"webpack-bundle-analyzer": "^3.5.0",
"webpack-cli": "^3.3.8",
"webpack-merge": "^4.2.2"
}
}