-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.44 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "nuxt-app",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"test": "pnpm test:unit",
"lint": "eslint --ext .js,.ts,.vue .",
"test:unit": "vitest run --config=vitest.config.ts",
"test:integration": "vitest run --config=vitest.config.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx server/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"db:cleanup": "tsx server/lib/cleanup.ts"
},
"dependencies": {
"@iconify-json/lucide": "^1.2.79",
"@nuxt/eslint": "1.11.0",
"@nuxt/test-utils": "3.21.0",
"@nuxt/ui": "4.2.1",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/vue-query": "^5.92.1",
"@types/jsonwebtoken": "^9.0.10",
"better-sqlite3": "^12.5.0",
"drizzle-orm": "^0.45.0",
"eslint": "^9.39.1",
"h3": "^1.15.4",
"jsonwebtoken": "^9.0.3",
"marked": "^17.0.1",
"nuxt": "^4.2.1",
"shiki": "^3.19.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"unique-names-generator": "^4.7.1",
"vue": "^3.5.25",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.10.2",
"drizzle-kit": "^0.31.8",
"tsx": "^4.21.0",
"vitest": "^4.0.15"
}
}