-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
119 lines (119 loc) · 3.16 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ares-admin",
"type": "module",
"version": "1.0.6",
"private": true,
"packageManager": "pnpm@8.15.9",
"description": "A management system template based on Vue3 and Element Plus",
"author": "zhangsanplus",
"license": "MIT",
"homepage": "https://github.com/zhangsanplus/ares-admin",
"repository": {
"type": "git",
"url": "git+https://github.com/zhangsanplus/ares-admin.git"
},
"bugs": {
"url": "https://github.com/zhangsanplus/ares-admin/issues"
},
"keywords": [
"vue3",
"typescript",
"element-plus",
"template",
"admin",
"ares-admin"
],
"engines": {
"node": "18.x"
},
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"build:test": "vue-tsc --noEmit && vite build --mode test",
"preview": "npm run build && vite preview",
"preinstall": "npx only-allow pnpm",
"lint:css": "stylelint **/*.{css,scss,vue} --fix",
"lint:js": "eslint --fix",
"lint:ls": "ls-lint",
"lint": "npm run lint:css && npm run lint:js && npm run lint:ls",
"typecheck": "vue-tsc --noEmit",
"commit": "git-cz",
"release": "bumpp",
"up": "taze major -I"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^10.11.0",
"axios": "^1.7.2",
"dayjs": "^1.11.12",
"echarts": "^5.5.1",
"element-plus": "^2.7.7",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"vue": "^3.4.33",
"vue-clipboard3": "^2.0.0",
"vue-router": "^4.4.0",
"vue3-slide-verify": "^1.1.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.23.0",
"@babel/core": "^7.24.9",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@iconify-json/ep": "^1.1.15",
"@ls-lint/ls-lint": "^2.2.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.11",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/babel-plugin-jsx": "^1.2.2",
"bumpp": "^9.4.1",
"commitizen": "^4.3.0",
"cz-git": "^1.9.4",
"eslint": "^9.7.0",
"lint-staged": "^15.2.7",
"mrm": "^4.1.22",
"postcss": "^8.4.39",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"sass": "^1.77.8",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.7.0",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"taze": "^0.16.1",
"terser": "^5.31.3",
"typescript": "^5.5.3",
"unplugin-auto-import": "^0.18.0",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.3",
"vite": "^5.3.4",
"vite-plugin-compression": "^0.5.1",
"vue-tsc": "^2.0.26"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit ${1}"
},
"lint-staged": {
"*.{ts,tsx,vue}": [
"eslint --fix"
],
"src/**/*.{css,vue,scss}": [
"stylelint --fix"
],
"src/**": [
"ls-lint"
]
}
}