-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "vue3-admin-vite",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"prepare": "husky install",
"lint": "eslint --ext .js,.ts,.vue src",
"lint:fix": "yarn lint --fix",
"lint-staged": "lint-staged",
"preview": "vite preview"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"git add -A"
]
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@antv/data-set": "^0.11.8",
"@antv/g2": "^4.2.4",
"@antv/g2plot": "^2.4.20",
"@convue-lib/utils": "^0.1.20",
"@wangeditor/editor": "^5.1.8",
"@wangeditor/editor-for-vue": "^5.1.12",
"ant-design-vue": "^3.2.9",
"axios": "^0.27.2",
"dayjs": "^1.11.3",
"less": "^4.1.3",
"lodash-es": "^4.17.21",
"nprogress": "^0.2.0",
"qs": "^6.10.5",
"vue": "^3.2.25",
"vue-i18n": "^9.1.10",
"vue-ls": "^4.2.0",
"vue-router": "^4.0.16",
"vuex": "^4.0.2"
},
"devDependencies": {
"@types/node": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@vitejs/plugin-vue": "^2.3.3",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-vue": "^9.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"rollup-plugin-visualizer": "^5.8.3",
"typescript": "^4.7.3",
"vite": "^2.9.9",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.6.1",
"vue-tsc": "^0.34.7"
}
}