-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "vue-admin-template",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite --mode dev",
"dev:prod": "vite --mode prod",
"build": "vue-tsc -b && vite build --mode prod",
"build:test": "vue-tsc -b && vite build --mode test",
"preview": "vite preview",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"typecheck": "vue-tsc --noEmit --skipLibCheck",
"commitlint": "commitlint --edit",
"release": "commit-and-tag-version",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"dayjs": "^1.11.13",
"pinia": "^2.2.4",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.7.6",
"@unocss/eslint-plugin": "^0.62.4",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"commit-and-tag-version": "^12.5.0",
"commitizen": "^4.3.1",
"cz-customizable": "^7.2.1",
"eslint": "^9.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"only-allow": "^1.2.1",
"typescript": "^5.6.3",
"unocss": "^0.62.4",
"unplugin-icons": "^0.19.3",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.9",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-devtools": "^7.5.2",
"vue-tsc": "^2.1.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"pnpm run lint:fix"
]
}
}