feat(M01-A): 锁定后端依赖并验证HTTP健康检查

This commit is contained in:
Codex
2026-06-16 20:56:51 +08:00
parent ea884e166f
commit 6114124ecb
4 changed files with 1354 additions and 7 deletions
+11 -4
View File
@@ -3,6 +3,10 @@
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.json",
@@ -10,10 +14,9 @@
"test": "node tests/backend-contract.test.mjs"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/rate-limit": "^9.1.0",
"fastify": "^4.28.1",
"kysely": "^0.27.4",
"@fastify/cors": "^11.2.0",
"@fastify/rate-limit": "^11.0.0",
"fastify": "^5.8.5",
"mysql2": "^3.11.3",
"pino": "^9.4.0",
"zod": "^3.23.8"
@@ -22,5 +25,9 @@
"@types/node": "^20.17.6",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"overrides": {
"fast-uri": "3.1.2",
"toad-cache": "3.7.0"
}
}