work on market-data-gateway
This commit is contained in:
parent
405b818c86
commit
b957fb99aa
87 changed files with 7979 additions and 99 deletions
|
|
@ -1,20 +1,58 @@
|
|||
{
|
||||
"name": "market-data-gateway",
|
||||
"name": "@stock-bot/market-data-gateway",
|
||||
"version": "1.0.0",
|
||||
"description": "Market data ingestion service",
|
||||
"description": "Unified market data gateway - real-time processing and historical storage",
|
||||
"main": "src/index.ts",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "bun run --watch src/index.ts",
|
||||
"start": "bun run src/index.ts",
|
||||
"test": "echo 'No tests yet'"
|
||||
}, "dependencies": {
|
||||
"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",
|
||||
"axios": "^1.6.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/config": "*",
|
||||
"@stock-bot/shared-types": "*",
|
||||
"ws": "^8.18.0"
|
||||
}, "devDependencies": {
|
||||
"bun-types": "^1.2.15",
|
||||
"@types/ws": "^8.5.12"
|
||||
}
|
||||
"@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"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue