{ "name": "backend", "version": "1.0.0", "description": "Express 5 Backend API", "type": "module", "scripts": { "dev": "tsx watch src/index.ts", "build": "tsc", "start": "node dist/index.js", "test": "tsx --test tests/**/*.test.ts", "test:qiwei": "tsx --test tests/qiwei.api.test.ts" }, "dependencies": { "express": "^5.0.0", "cors": "^2.8.5", "dotenv": "^16.4.5" }, "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^5.0.0", "@types/node": "^22.10.0", "@types/supertest": "^6.0.2", "supertest": "^7.0.0", "tsx": "^4.19.0", "typescript": "^5.6.0" } }