-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.24 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vue3-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"serve:dev": "node ./server/index",
"serve": "pnpm dev",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint ./src/ --ext .ts,.tsx,.vue",
"prepare": "husky install",
"prettier": "npx prettier --write ."
},
"keywords": [
"Vue",
"Vue3",
"admin",
"admin-template",
"vue-admin",
"vue-admin-template",
"Vite",
"vite-admin",
"TypeScript",
"TS",
"element",
"element-plus",
"element-admin",
"element-Admin",
"UnoCSS"
],
"dependencies": {
"@vueuse/core": "^10.9.0",
"axios": "^1.6.8",
"dayjs": "^1.11.11",
"echarts": "^5.5.0",
"element-plus": "^2.7.3",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"sm-crypto": "^0.3.13",
"socket.io-client": "^4.7.5",
"vue": "^3.4.27",
"vue-countup-v3": "^1.4.1",
"vue-cropper": "^1.1.3",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^17.4.1",
"@commitlint/config-conventional": "^17.4.0",
"@iconify/vue": "^4.1.2",
"@types/crypto-js": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.33",
"@types/nprogress": "^0.2.3",
"@types/sm-crypto": "^0.3.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"commitizen": "^4.2.6",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss-html": "^1.5.0",
"prettier": "^2.8.2",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.57.1",
"stylelint": "^14.16.1",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^4.3.0",
"typescript": "^4.9.4",
"unocss": "^0.60.2",
"unplugin-auto-import": "^0.18.0",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.2.11",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^2.0.19"
},
"lint-staged": {
"*.{vue,tsx,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./cz-config.cjs"
}
},
"engines": {
"node": ">=18.0.0"
}
}