-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "vue3-demo",
"version": "1.0.0",
"description": "## 构建一个vue3 + ts项目",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config ./build/webpack.config.js",
"build": "webpack --config ./build/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wongest/vue3-demo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wongest/vue3-demo/issues"
},
"homepage": "https://github.com/wongest/vue3-demo#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-async-to-generator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime-corejs3": "^7.20.1",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dart-sass": "^1.25.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^7.0.3",
"postcss-loader": "^7.0.1",
"progress-bar-webpack-plugin": "^2.1.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"tapable": "^2.2.1",
"thread-loader": "^3.0.4",
"url-loader": "^4.1.1",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.7.10",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"element-plus": "^2.4.1",
"three": "^0.157.0",
"vue": "^3.2.36",
"vue-router": "^4.1.6",
"vuex": "^4.0.2"
}
}