{ "name": "alpha-futures-backend", "version": "1.0.0", "description": "AI期货分析系统后端API服务", "main": "dist/app.js", "scripts": { "dev": "ts-node-dev --respawn --transpile-only src/app.ts", "build": "tsc", "start": "node dist/app.js", "lint": "eslint .", "test": "mocha --require ts-node/register test/**/*.ts" }, "dependencies": { "express": "^4.18.2", "cors": "^2.8.5", "helmet": "^7.1.0", "morgan": "^1.10.0", "express-rate-limit": "^7.1.5", "jsonwebtoken": "^9.0.2", "dotenv": "^16.3.1", "mongoose": "^8.0.3", "pg": "^8.11.3", "redis": "^4.6.12", "socket.io": "^4.7.4" }, "devDependencies": { "@types/express": "^4.17.21", "@types/cors": "^2.8.17", "@types/morgan": "^1.9.9", "@types/jsonwebtoken": "^9.0.5", "@types/pg": "^8.10.9", "@types/node": "^20.10.4", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "ts-node-dev": "^2.0.0", "typescript": "^5.3.3", "mocha": "^10.2.0", "chai": "^4.3.10", "supertest": "^6.3.3" } }