-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "vue3",
"version": "1.0.0",
"main": "index.js",
"author": "zhouyupeng",
"license": "MIT",
"scripts": {
"dev": "cross-env envMode=dev webpack serve --config ./build/webpack.dev.conf.js --color",
"build": "cross-env envMode=prod webpack --config build/webpack.prod.conf.js --color",
"build:test": "cross-env envMode=test webpack --config build/webpack.prod.conf.js --color"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@vue/compiler-sfc": "^3.0.11",
"autoprefixer": "9.8.6",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"copy-webpack-plugin": "^8.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^2.0.0",
"dotenv": "^10.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.1",
"less": "^4.1.1",
"less-loader": "^10.0.0",
"mini-css-extract-plugin": "^1.5.1",
"node-sass": "^5.0.0",
"postcss-loader": "^6.1.0",
"postcss-px-to-viewport": "^1.1.1",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"vue-loader": "^16.2.0",
"vue-template-compiler": "^2.6.12",
"webpack": "5.43",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "4.7.2",
"webpack-dev-server": "^4.0.0-beta.3",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.11.0",
"vant": "^3.0.18",
"vconsole": "^3.7.0",
"vue": "^3.0.11",
"vue-router": "4",
"vuex": "^4.0.0"
},
"browserslist": [
"> 0.1%",
"last 2 versions"
]
}