-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.79 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
62
{
"name": "lonewolfyx.dev",
"type": "module",
"private": true,
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@lucide/vue": "^1.21.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.18",
"lucide-vue-next": "^0.545.0",
"motion-v": "^1.7.2",
"reka-ui": "^2.5.1",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0",
"ufo": "^1.6.4",
"vue": "^3.5.22",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^8.0.0",
"@nuxt/content": "3.7.1",
"@nuxt/eslint": "1.9.0",
"@nuxt/icon": "2.0.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^25.5.2",
"@vueuse/core": "^13.9.0",
"@vueuse/nuxt": "13.9.0",
"eslint": "^9.37.0",
"nano-staged": "^1.0.2",
"nuxt": "^4.4.2",
"nuxt-shiki": "0.3.2",
"picocolors": "^1.1.1",
"shadcn-nuxt": "2.3.1",
"shiki": "^3.22.0",
"simple-git-hooks": "^2.13.1",
"tailwind-plugin-no-scrollbar": "^0.0.2",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged",
"commit-msg": "node scripts/verify-commit.js"
},
"nano-staged": {
"*": "eslint --fix"
}
}