-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 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
{
"name": "haex-sync-server",
"version": "0.13.0",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun run --hot index.ts",
"start": "bun run scripts/migrate.ts && bun run scripts/apply-storage-bucket.ts && bun run index.ts",
"start:no-migrate": "bun run index.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun run scripts/migrate.ts",
"db:push": "drizzle-kit push && bun run db:rls && bun run db:realtime && bun run db:storage-bucket",
"db:rls": "bun run scripts/apply-rls.ts",
"db:realtime": "bun run scripts/apply-realtime.ts",
"db:partitioning": "bun run scripts/apply-partitioning.ts",
"db:storage-bucket": "bun run scripts/apply-storage-bucket.ts",
"db:studio": "drizzle-kit studio",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major"
},
"devDependencies": {
"@types/bun": "latest",
"drizzle-kit": "^0.31.6",
"tsx": "^4.20.6"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@haex-space/federation-sdk": "0.2.2",
"@haex-space/ucan": "0.1.9",
"@haex-space/vault-sdk": "2.8.0",
"@hono/zod-validator": "^0.7.4",
"@supabase/supabase-js": "^2.79.0",
"drizzle-orm": "^0.45.1",
"hono": "^4.12.9",
"postgres": "^3.4.7",
"zod": "^4.1.12"
}
}