-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.68 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": "vue-tabs-admin",
"version": "1.0.0",
"description": "An admin system framework with multiple tab pages.",
"scripts": {
"start": "npm run dev",
"dev": "cross-env mode=development webpack-cli serve --config build/webpack.dev.conf.js --progress ",
"build": "cross-env mode=production webpack --config build/webpack.prod.conf.js --progress",
"server": "json-server --delay 2000 --watch db.json"
},
"repository": {
"type": "git",
"url": "https://github.com/wjwu/vue-tabs-admin.git"
},
"author": "Vincent Wu",
"license": "MIT",
"dependencies": {
"@vueuse/core": "^10.2.1",
"axios": "^1.4.0",
"core-js": "^3.31.1",
"element-plus": "^2.3.8",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@vue/compiler-sfc": "^3.3.4",
"babel-eslint": "^10.0.3",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.15.1",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"node-sass": "^9.0.0",
"sass-loader": "^13.3.2",
"terser-webpack-plugin": "^5.3.9",
"vue-loader": "^17.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}