34 lines
811 B
JSON
34 lines
811 B
JSON
{
|
|
"name": "@qipai/backend",
|
|
"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",
|
|
"start": "node dist/server.js",
|
|
"test": "npm run build && node tests/backend-contract.test.mjs && node tests/migration-contract.test.mjs && node tests/mysql-pool-contract.test.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@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"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.17.6",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"overrides": {
|
|
"fast-uri": "3.1.2",
|
|
"toad-cache": "3.7.0"
|
|
}
|
|
}
|