-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 944 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 944 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
{
"name": "nowip-api",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.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",
"start": "bun run src/index.ts"
},
"dependencies": {
"@hono/standard-validator": "^0.2.1",
"@scalar/hono-api-reference": "^0.9.30",
"better-dns": "2.2.2",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"hono": "^4.11.1",
"hono-openapi": "^1.1.2",
"zod": "^4.2.1"
},
"devDependencies": {
"bun-types": "^1.3.5",
"drizzle-kit": "^0.31.8"
},
"module": "src/index.ts"
}