-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.34 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "api",
"module": "src/server.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun --bun run src/server.ts",
"dev": "bun --bun --watch src/server.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:drop": "drizzle-kit drop",
"migrate:production": "bash scripts/migrate-production.sh",
"migrate:data": "bun run scripts/migrate-data.ts",
"ts": "tsgo --noEmit",
"lint": "oxlint --type-aware"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.20.0",
"@typescript/native-preview": "latest",
"csv-parse": "^6.2.1",
"drizzle-kit": "1.0.0-beta.22-41a7d21",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.20.0"
},
"dependencies": {
"@electric-sql/pglite": "^0.4.4",
"@orpc/client": "^1.13.14",
"@orpc/contract": "^1.13.14",
"@orpc/server": "^1.13.14",
"drizzle-orm": "1.0.0-beta.22-41a7d21",
"drizzle-zod": "1.0.0-beta.14-56703c9",
"jose": "^6.2.2",
"node-cron": "^4.2.1",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"overrides": {
"drizzle-orm": "1.0.0-beta.8-e601f80",
"drizzle-zod": "1.0.0-beta.8-e601f80",
"drizzle-kit": "1.0.0-beta.8-e601f80"
}
}