-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
88 lines (88 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "vite-vue-admin",
"version": "1.0.0",
"scripts": {
"dev": "vite --base=/",
"tsc": "vue-tsc --noEmit --skipLibCheck",
"build": "vite build --base=/",
"gitBuild": "vite build --base=/vite-vue-admin/",
"preview": "pnpm build && vite preview --port 8088",
"clean:cache": "rimraf node_modules/.cache/ && rimraf node_modules/.vite",
"clean:modules": "rimraf node_modules",
"lint:lint-staged": "lint-staged",
"prepare": "husky install"
},
"license": "MIT",
"homepage": "https://peng-xiao-shuai.github.io/vite-vue-admin/",
"bugs": {
"url": "https://peng-xiao-shuai.github.io/vite-vue-admin/issues"
},
"dependencies": {
"@amap/amap-jsapi-loader": "^1.0.1",
"@antv/x6": "^1.34.11",
"@element-plus/eslint-config": "^0.0.20230226",
"@element-plus/icons-vue": "^2.1.0",
"@kangc/v-md-editor": "^2.3.15",
"@vueuse/core": "^9.13.0",
"axios": "^0.21.4",
"echarts": "^5.4.1",
"el-plus-powerful-table-ts": "2.2.9",
"element-plus": "^2.4.3",
"exceljs": "^4.3.0",
"file-saver": "^2.0.5",
"js-cookie": "^3.0.1",
"mockjs": "^1.1.0",
"normalize-wheel": "^1.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.0.33",
"resize-observer-polyfill": "^1.5.1",
"screenfull": "^6.0.2",
"vue": "^3.3.11",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5",
"vue3-number-roll-plus": "^0.1.3",
"xlsx": "^0.18.5",
"xlsx-style": "^0.8.13"
},
"devDependencies": {
"@amap/amap-jsapi-types": "^0.0.13",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/compiler-sfc": "^3.3.11",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.19.2",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"sass": "^1.59.3",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.5.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-svg-icons": "^2.0.1",
"vue-tsc": "^1.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write"
],
"*.{scss,html}": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}