Files
score-backend/package.json
2026-01-08 14:30:11 +08:00

22 lines
404 B
JSON

{
"name": "my-score-backend",
"version": "1.0.0",
"description": "My Score Backend API",
"type": "module",
"main": "main.ts",
"scripts": {
"start": "bun run main.ts",
"dev": "bun --watch main.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"hono": "^4.7.11",
"postgres": "^3.4.3"
},
"devDependencies": {
"@types/bun": "latest"
}
}