-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.73 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
{
"name": "webpack-template",
"version": "1.0.0",
"description": "webpack 5 配置",
"main": "index.js",
"author": "wangjp",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"analy": "cross-env BUILD_ANALY=true NODE_ENV=production webpack --config config/webpack.prod.js",
"lint": "eslint --ext .js,.vue src"
},
"keywords": [
"webpack",
"webpack 5",
"webpack template"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@vue/compiler-sfc": "^3.2.36",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.5",
"css-minimizer-webpack-plugin": "^3.0.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-vue": "^7.10.0",
"eslint-webpack-plugin": "^2.5.4",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.6.0",
"postcss-loader": "^7.0.0",
"postcss-preset-env": "^7.6.0",
"sass": "^1.34.0",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.3",
"vue-loader": "^16.2.0",
"webpack": "^5.37.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"@babel/runtime": "^7.19.0",
"core-js": "^3.25.2",
"element-plus": "^2.2.2",
"vue": "^3.2.36"
}
}