You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

{
"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": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"redis": "^4.6.12",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.4",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"chai": "^4.3.10",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}