-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 876 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 876 Bytes
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
{
"name": "backup-server",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run dist/index.js",
"start:ts": "bun run src/index.ts",
"test": "vitest",
"build": "bun build src/index.ts --target=node --outdir=dist --sourcemap=linked",
"backup": "bun run start"
},
"dependencies": {
"@libsql/client": "^0.14.0",
"@libsql/darwin-arm64": "^0.5.3",
"@repo/db": "workspace:*",
"@upstash/redis": "^1.34.3",
"cron": "^3.1.8",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.35.3",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.8",
"hono-pino": "^0.4.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"stoker": "^1.2.7",
"ts-node": "^10.9.2",
"viem": "^2.21.36",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.13.14"
}
}