-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 895 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": "hydra-server",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run index.ts",
"dev": "bun --hot run index.ts",
"lint:fix": "eslint --fix . && bun run prettier . --write",
"migrate": "bunx drizzle-kit generate --dialect sqlite --schema ./db/schema.ts --out ./db/migrations",
"deploy": "flyctl deploy"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/bun": "latest",
"drizzle-kit": "0.31.10",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"prettier": "3.5.3",
"typescript-eslint": "^8.26.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@ai-sdk/groq": "^4.0.22",
"@ai-sdk/openai": "^4.0.30",
"ai": "^7.0.52",
"drizzle-orm": "0.45.2",
"expo-server-sdk": "^3.14.0",
"zod": "^4.4.3"
}
}