-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 3.77 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
{
"name": "vue-clean-admin",
"version": "1.0.0",
"description": "基于Vue3、Vite、TypeScript、Element-Plus的精简中后台管理系统",
"author": "Fifteen",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build --mode production",
"build:dev": "vue-tsc --noEmit && vite build --mode development",
"preview": "vite preview",
"lint:eslint": "eslint --fix --cache --max-warnings 0 \"{src,build,mock}/**/*.{vue,ts,tsx}\" --cache-location 'node_modules/.cache/eslint/'",
"lint:format": "prettier --write --cache \"{src,build,mock}/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"",
"lint:style": "stylelint --fix --max-warnings 0 --cache \"**/*.{css,scss,sass,vue}\" --cache-location 'node_modules/.cache/stylelint/'",
"lint": "pnpm lint:format && pnpm lint:eslint && pnpm lint:style",
"clear:cache": "rimraf node_modules/.cache",
"prepare": "husky",
"commit": "git-cz",
"eslint:rules": "eslint-config-inspector --config eslint.config.js",
"vite": "vite --debug transform"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@vueuse/core": "^11.0.1",
"axios": "^1.7.4",
"dayjs": "^1.11.13",
"echarts": "^5.5.1",
"element-plus": "^2.8.4",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"mockjs": "^1.1.0",
"nprogress": "^0.2.0",
"numbro": "^2.5.0",
"pinia": "^2.2.2",
"pinia-plugin-persistedstate": "^3.2.1",
"vue": "^3.4.37",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@commitlint/cz-commitlint": "^19.4.0",
"@eslint/config-inspector": "^0.5.4",
"@eslint/js": "^9.9.1",
"@iconify-json/line-md": "^1.2.1",
"@iconify-json/mdi": "^1.2.1",
"@iconify-json/mingcute": "^1.2.0",
"@iconify-json/ri": "^1.2.0",
"@iconify/tailwind": "^1.1.3",
"@iconify/vue": "^4.1.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.4.1",
"@types/nprogress": "^0.2.3",
"@vitejs/plugin-vue": "^5.1.2",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.0",
"eslint": "^9.9.1",
"eslint-plugin-check-file": "^2.8.0",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"husky": "^9.1.5",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"postcss-html": "^1.7.0",
"postcss-scss": "^4.0.9",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "1.77.5",
"stylelint": "^16.8.2",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.1.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.2",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.3",
"typescript-eslint": "^8.2.0",
"unplugin-auto-import": "^0.18.2",
"unplugin-element-plus": "^0.8.0",
"unplugin-imagemin": "^0.5.20",
"unplugin-turbo-console": "^1.10.1",
"vite": "^5.4.1",
"vite-plugin-chunk-split": "^0.5.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-mock": "^3.0.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^7.4.4",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.29"
},
"license": "MIT",
"keywords": [
"vue",
"vue3",
"vite",
"admin",
"typescript",
"vue-clean-admin"
]
}