-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.38 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "stackhacker-ui",
"type": "module",
"private": true,
"packageManager": "pnpm@10.34.5",
"engines": {
"node": ">=24.11.0 <25"
},
"scripts": {
"prebuild": "pnpm registry:build",
"build": "nuxt build",
"dev": "nuxt dev",
"pregenerate": "pnpm registry:build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"registry:build": "tsx ./scripts/registry-build.ts",
"registry:verify": "tsx ./scripts/registry-verify.ts"
},
"dependencies": {
"@libsql/client": "^0.17.4",
"@lucide/vue": "^1.33.0",
"@nuxt/content": "^3.15.2",
"@nuxt/eslint": "^1.17.0",
"@nuxt/icon": "^2.5.0",
"@nuxthub/core": "^0.10.8",
"@tailwindcss/vite": "^4.3.3",
"@vueuse/core": "^14.4.0",
"@vueuse/nuxt": "^14.4.0",
"ai": "^6.0.259",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.10",
"drizzle-orm": "^0.45.2",
"eslint": "^9.39.5",
"lucide-vue-next": "^0.577.0",
"nuxt": "^4.5.2",
"nuxt-og-image": "^6.7.8",
"reka-ui": "^2.10.3",
"shadcn-nuxt": "2.8.2",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.41",
"vue-router": "^5.2.0"
},
"devDependencies": {
"@types/node": "^24.13.3",
"fs-extra": "^11.4.0",
"glob": "^13.0.6",
"lint-staged": "^16.4.0",
"nuxt-shiki": "0.3.2",
"rimraf": "^6.1.3",
"shadcn-vue": "^2.8.2",
"shadcn-vue-registry": "0.0.0-beta.11",
"shiki": "^3.23.0",
"tinyexec": "^1.3.0",
"tsx": "^4.23.12",
"typescript": "^5.9.3",
"vue-tsc": "3.3.10"
},
"lint-staged": {
"*.+(ts|tsx|vue)": [
"eslint --fix"
]
},
"pnpm": {
"overrides": {
"devalue": "^5.9.1",
"postcss": "^8.5.26",
"brace-expansion": "^5.0.9",
"minimatch@3.1.5>brace-expansion": "1.1.18",
"hono": "4.13.3",
"fast-uri": "3.1.5",
"ip-address": "10.5.0",
"esbuild": "^0.28.2"
}
}
}