-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.6 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
{
"name": "",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"description": "",
"author": {
"name": "",
"email": ""
},
"license": "UNLICENSED",
"homepage": "",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": "",
"email": ""
},
"keywords": [],
"scripts": {
"dev": "vite",
"build": "cross-env NODE_ENV=production vite build",
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@vueuse/core": "^12.4.0",
"@vueuse/head": "^2.0.0",
"pinia": "^2.3.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.15.0",
"@iconify-json/mdi": "^1.2.3",
"@types/node": "^22.10.7",
"@unocss/preset-attributify": "^65.4.2",
"@unocss/preset-icons": "^65.4.2",
"@unocss/preset-uno": "^65.4.2",
"@unocss/reset": "^65.4.2",
"@unocss/transformer-directives": "^65.4.2",
"@unocss/transformer-variant-group": "^65.4.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/compiler-ssr": "^3.5.13",
"cross-env": "^7.0.3",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"typescript": "^5.7.3",
"unocss": "^65.4.2",
"unplugin-auto-import": "^19.0.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.0.11",
"vite-plugin-inspect": "^10.0.7",
"vitest": "^3.0.3",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,json,html}": "eslint --fix"
}
}