forked from imzbf/vue3-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "vue3-admin",
"version": "2.0.0",
"license": "MIT",
"author": {
"name": "zbf",
"url": "https://github.com/imzbf"
},
"keywords": [
"vue",
"vue3",
"admin"
],
"homepage": "https://imzbf.github.io/vue3-admin/",
"scripts": {
"dev": "vite serve",
"build": "vite build",
"preview": "vite preview",
"build:preview": "vite build --mode preview",
"lint": "eslint --fix --ext .ts,.tsx,.vue,.json src"
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@vavt/util": "^1.4.1",
"axios": "^1.6.0",
"echarts": "^5.4.3",
"element-plus": "^2.4.2",
"i18next": "^23.6.0",
"i18next-vue": "^3.0.0",
"md-editor-v3": "^4.8.2",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"screenfull": "^6.0.2",
"vue": "^3.3.7",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@types/mockjs": "^1.0.9",
"@types/multiparty": "^0.0.35",
"@types/node": "^20.8.10",
"@types/nprogress": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-vue": "^4.4.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vue": "^9.18.1",
"mockjs": "^1.1.0",
"multiparty": "^4.2.3",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"typescript": "^5.2.2",
"vite": "^4.5.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"semi": true,
"printWidth": 100,
"proseWrap": "never",
"endOfLine": "auto"
}
}