-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.37 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
{
"name": "delb",
"private": true,
"type": "module",
"version": "0.1.3",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare:nuxt": "nuxt prepare",
"typecheck": "nuxt typecheck",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx",
"postinstall": "sh -c 'if [ \"${NUXT_PREPARE:-}\" = \"1\" ] || [ \"${NUXT_PREPARE:-}\" = \"true\" ]; then nuxt prepare; else echo \"Skipping nuxt prepare (set NUXT_PREPARE=1 to enable)\"; fi'",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"db:migrateprod": "npx tsx .drizzle/migrate.ts",
"db:studio": "npx -y -p esbuild@0.25.12 -p drizzle-kit@0.31.8 drizzle-kit studio",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@libsql/client": "^0.15.15",
"@libsql/darwin-arm64": "^0.5.29",
"@libsql/linux-arm64-gnu": "^0.5.29",
"@nuxt/fonts": "0.12.1",
"@nuxt/icon": "2.1.1",
"@pinia/nuxt": "^0.11.3",
"@tailwindcss/vite": "^4.3.0",
"@tiptap/extension-link": "^3.23.6",
"@tiptap/pm": "^3.23.6",
"@tiptap/starter-kit": "^3.23.6",
"@tiptap/vue-3": "^3.23.6",
"@vueuse/nuxt": "^14.3.0",
"better-auth": "^1.6.11",
"canvas-confetti": "^1.9.4",
"drizzle-orm": "^0.45.2",
"epub2": "^3.0.2",
"epubjs": "^0.3.93",
"esbuild": "0.27.2",
"fuzzysort": "^3.1.0",
"nuxt": "^4.4.6",
"pdfreader": "^3.0.8",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"pino": "^10.3.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.3.0",
"uuid": "^13.0.2"
},
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@iconify-json/lucide": "^1.2.110",
"@nuxt/eslint": "1.12.1",
"@types/node": "^22.19.19",
"drizzle-kit": "^0.31.10",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.3",
"standard-version": "^9.5.0",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"vue-tsc": "^2.2.12"
}
}