-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.42 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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"packageManager": "bun@1.3.9",
"scripts": {
"build": "nuxt build",
"dev": "doppler run -- nuxt dev",
"generate": "nuxt generate",
"preview": "doppler run -- nuxt preview",
"postinstall": "nuxt prepare",
"db:generate": "doppler run -- drizzle-kit generate",
"db:migrate": "doppler run -- bun run server/database/migrate.ts",
"db:backfill-areas": "doppler run -- bun run server/database/backfill-areas.ts",
"db:push": "doppler run -- drizzle-kit push",
"db:seed": "doppler run -- bash -c 'for f in server/database/seed/*.sql; do psql $NUXT_DATABASE_URL -f $f; done'",
"db:studio": "doppler run -- drizzle-kit studio",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"test": "doppler run -- vitest run",
"test:watch": "doppler run -- vitest",
"lint": "vize lint app server shared",
"lint:fix": "vize lint --fix app server shared",
"format": "vize fmt --write app server shared scripts workers",
"format:check": "vize fmt --check app server shared scripts workers",
"fallow": "fallow"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.98.0",
"@nuxt/content": "3.12.0",
"@nuxt/eslint": "1.15.1",
"@nuxt/fonts": "0.14.0",
"@nuxt/icon": "2.2.1",
"@nuxt/image": "^2.0.0",
"@nuxt/scripts": "0.13.2",
"@nuxt/ui": "^4.4.0",
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.2.2",
"@takumi-rs/core": "^1.6.0",
"@unhead/vue": "^2.1.4",
"drizzle-orm": "^0.45.1",
"eslint": "^9.39.1",
"leaflet": "^1.9.4",
"nuxt": "^4.3.1",
"nuxt-auth-utils": "0.5.29",
"nuxt-og-image": "6.5.1",
"openai": "^6.22.0",
"postgres": "^3.4.8",
"reflect-metadata": "^0.2.2",
"typescript": "^5.9.3",
"unstorage": "^1.17.4",
"vue": "^3.5.28",
"vue-router": "^4.6.3",
"yaml": "^2.8.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@iconify-json/fa6-brands": "^1.2.6",
"@iconify-json/lucide": "^1.2.91",
"@iconify-json/simple-icons": "^1.2.71",
"@nuxt/test-utils": "^4.0.0",
"@tailwindcss/typography": "^0.5.19",
"@takumi-rs/wasm": "^1.6.0",
"@types/leaflet": "^1.9.21",
"drizzle-kit": "^0.31.9",
"fallow": "^2.103.0",
"happy-dom": "^20.8.9",
"tailwindcss": "^4.1.18",
"vitest": "^4.1.2",
"vize": "^0.267.0",
"vue-tsc": "2.2.10",
"wrangler": "^4.93.1"
}
}