feat(api): add secure Fastify skeleton

This commit is contained in:
chick
2026-07-16 11:36:24 +08:00
parent a86970d33b
commit 26c1bcc6da
8 changed files with 606 additions and 10 deletions
+7
View File
@@ -5,6 +5,13 @@
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"test": "vitest run --root ../.. apps/api/src/app.test.ts apps/api/src/start.test.ts",
"typecheck": "tsc -p tsconfig.json"
},
"dependencies": {
"fastify": "5.10.0"
},
"devDependencies": {
"@types/node": "24.13.3"
}
}