Files
harbor-server/package.json
2025-10-21 13:41:30 +08:00

19 lines
391 B
JSON

{
"name": "server",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun",
"start": "bun dist/index.js"
},
"dependencies": {
"drizzle-kit": "^0.31.5",
"drizzle-orm": "^0.44.6",
"hono": "^4.10.1"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
}
}