stock-bot/apps/data-service/package.json

33 lines
877 B
JSON

{
"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/cache": "*",
"@stock-bot/config": "*",
"@stock-bot/event-bus": "*",
"@stock-bot/http": "*",
"@stock-bot/logger": "*",
"@stock-bot/mongodb-client": "*",
"@stock-bot/questdb-client": "*",
"@stock-bot/shutdown": "*",
"@stock-bot/types": "*",
"bullmq": "^5.53.2",
"hono": "^4.0.0",
"p-limit": "^6.2.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@types/ws": "^8.0.0",
"typescript": "^5.0.0"
}
}