bootstrap js projects

This commit is contained in:
2025-07-08 03:17:12 +08:00
commit 11b57ce46a
12 changed files with 1965 additions and 0 deletions

18
hono/package.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "money-transfer",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@hono/node-server": "^1.15.0",
"hono": "^4.8.4"
},
"devDependencies": {
"@types/node": "^20.11.17",
"tsx": "^4.7.1",
"typescript": "^5.8.3"
}
}