-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.76 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
83
84
{
"name": "web",
"type": "module",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "nuxt typecheck",
"db:generate": "drizzle-kit generate",
"db:migrate": "node ./ops/migrate.mjs",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx drizzle/seed.ts --confirm",
"db:seed:content": "tsx drizzle/seed/content.ts",
"build:seed": "esbuild drizzle/seed.ts --bundle --platform=node --format=esm --outfile=ops/seed.mjs --packages=external",
"build:seed:content": "esbuild drizzle/seed/content.ts --bundle --platform=node --format=esm --outfile=ops/seed-content.mjs --packages=external",
"cache:purge": "tsx scripts/purge-cache.ts",
"build:cache-purge": "esbuild scripts/purge-cache.ts --bundle --platform=node --format=esm --outfile=ops/cache-purge.mjs --packages=external",
"i18n:check": "tsx scripts/check-i18n-parity.ts",
"i18n:audit-identical": "tsx scripts/check-i18n-identical-values.ts"
},
"dependencies": {
"@formkit/auto-animate": "^0.9.0",
"@iconify-json/circle-flags": "^1.2.10",
"@iconify-json/lucide": "^1.2.111",
"@iconify-json/tabler": "^1.2.35",
"@internationalized/date": "^3.12.2",
"@nuxt/fonts": "^0.14.0",
"@nuxt/icon": "2.2.3",
"@nuxt/image": "2.0.0",
"@nuxt/ui": "4.8.1",
"@nuxtjs/i18n": "10.4.0",
"@nuxtjs/seo": "5.1.3",
"@paralleldrive/cuid2": "^3.3.0",
"@tailwindcss/vite": "^4.3.0",
"@vueuse/core": "^14.3.0",
"@vueuse/integrations": "^14.3.0",
"@vueuse/nuxt": "14.3.0",
"better-auth": "^1.6.13",
"bullmq": "^5.78.0",
"dompurify": "^3.4.7",
"dotenv": "^17.4.2",
"drizzle-orm": "^0.45.2",
"ioredis": "5.11.0",
"linkedom": "^0.18.12",
"nodemailer": "^8.0.10",
"nuxt": "^4.4.7",
"nuxt-security": "^2.6.0",
"nuxt-umami": "^3.2.1",
"p-limit": "^7.3.0",
"pg": "^8.21.0",
"photoswipe": "^5.4.4",
"sharp": "^0.34.5",
"sortablejs": "^1.15.7",
"tailwindcss": "^4.3.0",
"undici": "8.3.0",
"unstorage": "^1.17.5",
"vue": "^3.5.35",
"vue-router": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@nuxt/a11y": "1.0.0-alpha.1",
"@nuxt/eslint": "1.15.2",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/sortablejs": "^1.15.9",
"drizzle-kit": "^0.31.10",
"esbuild": "^0.28.0",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"vue-tsc": "^3.3.3"
},
"packageManager": "pnpm@11.5.1"
}