-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "bunserver",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run index.ts",
"format": "bunx --bun biome format --write",
"lint": "bunx --bun biome lint --write",
"check": "bunx --bun biome check --write",
"knip": "knip",
"prisma:generate": "bunx --bun prisma generate",
"prisma:migrate": "bunx --bun prisma migrate dev",
"prisma:studio": "bunx --bun prisma studio",
"prisma:push": "bunx --bun prisma db push",
"seed": "bun run prisma/seed.ts",
"test": "bun test --timeout 5000",
"test:coverage": "bun test --coverage --timeout 5000",
"mcp": "bun run src/mcp/server.ts"
},
"devDependencies": {
"@biomejs/biome": "2.3.9",
"@types/bun": "^1.3.4",
"@types/figlet": "^1.7.0",
"knip": "^5.75.1",
"lefthook": "^2.0.12"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@elysiajs/cors": "^1.4.0",
"@elysiajs/swagger": "^1.3.1",
"@modelcontextprotocol/sdk": "^1.25.1",
"@prisma/adapter-pg": "^7.1.0",
"@prisma/client": "^7.1.0",
"@types/pg": "^8.16.0",
"elysia": "^1.4.19",
"figlet": "^1.9.4",
"pg": "^8.16.3",
"prisma": "^7.1.0",
"zod": "^4.2.1"
}
}