first commit

This commit is contained in:
2025-10-21 12:38:08 +08:00
commit cfe28c316d
11 changed files with 2041 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "server",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@hono/node-server": "^1.19.5",
"better-sqlite3": "^12.4.1",
"drizzle-kit": "^0.31.5",
"drizzle-orm": "^0.44.6",
"hono": "^4.10.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}