-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.34 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
66
67
68
69
70
{
"name": "webpack5-react-demo",
"version": "1.0.0",
"main": "index.js",
"sideEffects": [
"*.css",
"*.less"
],
"scripts": {
"dev": "webpack serve --config webpack/webpack.dev.js --progress --mode development",
"build": "rm -rf dist && webpack --config webpack/webpack.prod.js --progress --color",
"dll": "rm -rf dll && webpack --config webpack/webpack.dll.js"
},
"repository": "https://github.com/Vibing/webpack5-react-demo.git",
"author": "chenlong <[email protected]>",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"add-asset-html-webpack-plugin": "^3.1.3",
"antd-dayjs-webpack-plugin": "^1.0.6",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.8.2",
"css-loader": "^5.0.1",
"html-webpack-dll-file-plugin": "^1.0.4",
"html-webpack-plugin": "^5.0.0-beta.5",
"html-webpack-tags-plugin": "^2.0.17",
"less": "^4.1.0",
"less-loader": "^7.2.1",
"less-plugin-clean-css": "^1.5.1",
"mini-css-extract-plugin": "^1.3.4",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"react-hot-loader": "^4.13.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"thread-loader": "^3.0.1",
"typescript": "^4.1.3",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-oss-upload-plugin": "^1.1.2",
"webpackbar": "^5.0.0-3"
},
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^4.4.0",
"@loadable/component": "^5.14.1",
"antd": "^4.10.2",
"axios": "^0.21.1",
"dayjs": "^1.10.3",
"mobx": "^6.1.4",
"mobx-react": "^7.1.0",
"nanoid": "^3.1.23",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
}
}