-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.31 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.31 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
{
"name": "api-server",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"aptly-api-client:generate": "openapi-ts -f ./openapi-ts.aptly-api.config.ts",
"db:generate": "bun scripts/db-utils && drizzle-kit generate --config=drizzle.config.ts",
"db:migrate": "bun scripts/db-utils && drizzle-kit migrate --config=drizzle.config.ts",
"db:push": "bun scripts/db-utils && drizzle-kit push --config=drizzle.config.ts",
"typecheck": "tsc -p ./tsconfig/tsconfig.typecheck.json && echo 'Typecheck passed!'",
"test": "bun test",
"dev": "bun run --watch src/index.ts",
"compile": "bun run ./scripts/compile",
"start": "bun run scripts/entrypoint.ts"
},
"devDependencies": {
"@cleverjs/cli": "^2.3.0",
"@hey-api/openapi-ts": "0.93.0",
"@types/bun": "^1.3.9",
"drizzle-kit": "^0.31.9"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@cleverjs/utils": "^1.1.9",
"@hono/standard-validator": "^0.2.2",
"@libsql/client": "^0.17.0",
"@scalar/hono-api-reference": "^0.9.45",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"hono": "^4.12.3",
"hono-openapi": "^1.2.0",
"zod": "^4.3.6"
}
}