This commit is contained in:
Bojan Kucera 2025-06-04 22:46:01 -04:00
parent 7993148a95
commit 528be93804
38 changed files with 4617 additions and 1081 deletions

View file

@ -0,0 +1,29 @@
{
"name": "@stock-bot/data-service",
"version": "1.0.0",
"description": "Combined data ingestion and historical data service",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node",
"start": "bun dist/index.js",
"test": "bun test",
"clean": "rm -rf dist"
},
"dependencies": {
"@stock-bot/config": "workspace:*",
"@stock-bot/logger": "workspace:*",
"@stock-bot/types": "workspace:*",
"@stock-bot/questdb-client": "workspace:*",
"@stock-bot/mongodb-client": "workspace:*",
"@stock-bot/event-bus": "workspace:*",
"@stock-bot/http-client": "workspace:*",
"hono": "^4.0.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@types/ws": "^8.0.0",
"typescript": "^5.0.0"
}
}