-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "skyadmin",
"type": "module",
"version": "0.0.1",
"private": true,
"author": {
"name": "Skiyee",
"email": "[email protected]"
},
"scripts": {
"postinstall": "simple-git-hooks",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"release": "release-it"
},
"dependencies": {
"@vueuse/core": "^10.7.2",
"lodash-es": "^4.17.21",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@iconify-json/fe": "^1.1.10",
"@iconify-json/line-md": "^1.1.36",
"@release-it/conventional-changelog": "^8.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.10",
"@unocss/eslint-plugin": "^0.58.5",
"@unocss/preset-rem-to-px": "^0.58.5",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/tsconfig": "^0.5.1",
"commitizen": "^4.3.0",
"cz-git": "^1.8.0",
"eslint": "^8.56.0",
"lint-staged": "^15.2.2",
"naive-ui": "^2.37.3",
"release-it": "^17.1.1",
"simple-git-hooks": "^2.9.0",
"typescript": "~5.3.0",
"unocss": "^0.58.5",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.11",
"vue-tsc": "^1.8.27"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit ${1}"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}