-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.71 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
{
"name": "vue3-ess-starter",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "vue-tsc -b",
"lint": "eslint --fix .",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@vueuse/core": "^14.4.0",
"alova": "^3.5.5",
"colord": "^2.10.0",
"crypto-js": "^4.2.0",
"defu": "^6.1.7",
"naive-ui": "^2.45.2",
"nanoid": "^6.0.1",
"nprogress": "^0.2.0",
"pinia": "^4.0.3",
"pinia-plugin-persistedstate": "^4.7.1",
"vue": "^3.6.0-rc.5",
"vue-i18n": "^11.4.9",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^9.3.0",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@iconify-json/carbon": "^1.2.25",
"@iconify/utils": "^3.1.4",
"@types/crypto-js": "^4.2.2",
"@types/node": "^26.3.0",
"@types/nprogress": "^0.2.3",
"@unocss/eslint-plugin": "^66.8.1",
"@vitejs/plugin-vue": "^6.0.8",
"@vitejs/plugin-vue-jsx": "^5.1.6",
"@vue/tsconfig": "^0.9.1",
"dayjs": "^1.11.23",
"eslint": "^10.9.1",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-import-x": "^4.17.1",
"sass-embedded": "^1.103.1",
"simple-git-hooks": "^2.13.1",
"typescript": "<7",
"unocss": "^66.8.1",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.2.2",
"vite-plugin-vue-devtools": "^8.2.1",
"vite-plugin-vue-layouts": "^0.11.0",
"vue-tsc": "^3.3.11"
},
"simple-git-hooks": {
"commit-msg": "npx --no-install commitlint --edit \"$1\"",
"pre-commit": "pnpm typecheck && pnpm lint && git diff --exit-code"
}
}