58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "@stock-bot/market-data-gateway",
|
|
"version": "1.0.0",
|
|
"description": "Unified market data gateway - real-time processing and historical storage",
|
|
"main": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "bun --watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "bun src/index.ts",
|
|
"test": "bun test",
|
|
"lint": "eslint src/**/*.ts",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4.6.3",
|
|
"@hono/node-server": "^1.8.0",
|
|
"ws": "^8.18.0",
|
|
"bull": "^4.12.0",
|
|
"ioredis": "^5.4.1",
|
|
"zod": "^3.22.0",
|
|
"uuid": "^9.0.0",
|
|
"compression": "^1.7.4",
|
|
"helmet": "^7.1.0",
|
|
"rate-limiter-flexible": "^5.0.0",
|
|
"node-cron": "^3.0.3",
|
|
"eventemitter3": "^5.0.1",
|
|
"fast-json-stringify": "^5.10.0",
|
|
"pino": "^8.17.0",
|
|
"dotenv": "^16.3.0",
|
|
"@stock-bot/http-client": "*",
|
|
"@stock-bot/config": "*",
|
|
"@stock-bot/types": "*",
|
|
"@stock-bot/event-bus": "*",
|
|
"@stock-bot/utils": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"@types/ws": "^8.5.12",
|
|
"@types/uuid": "^9.0.0",
|
|
"@types/compression": "^1.7.5",
|
|
"@types/node-cron": "^3.0.11",
|
|
"typescript": "^5.3.0",
|
|
"eslint": "^8.56.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
"@typescript-eslint/parser": "^6.19.0",
|
|
"bun-types": "^1.2.15"
|
|
},
|
|
"keywords": [
|
|
"market-data",
|
|
"gateway",
|
|
"real-time",
|
|
"websocket",
|
|
"historical",
|
|
"stock-bot",
|
|
"core-services"
|
|
]
|
|
}
|