34 lines
945 B
JSON
34 lines
945 B
JSON
{
|
|
"name": "data-processor",
|
|
"version": "1.0.0",
|
|
"description": "Data processing and pipeline orchestration service",
|
|
"main": "src/index.ts", "scripts": {
|
|
"dev": "bun run --watch src/index.ts",
|
|
"start": "bun run src/index.ts",
|
|
"build": "bun build src/index.ts --outdir=dist --target=bun",
|
|
"test": "bun test",
|
|
"lint": "eslint src/**/*.ts",
|
|
"type-check": "tsc --noEmit"
|
|
},"dependencies": {
|
|
"@stock-bot/types": "*",
|
|
"@stock-bot/event-bus": "*",
|
|
"@stock-bot/utils": "*",
|
|
"@stock-bot/logger": "*",
|
|
"@stock-bot/api-client": "*",
|
|
"hono": "^4.6.3",
|
|
"ioredis": "^5.4.1",
|
|
"cron": "^3.1.6",
|
|
"bull": "^4.12.2",
|
|
"axios": "^1.6.2",
|
|
"node-fetch": "^3.3.2",
|
|
"csv-parser": "^3.0.0",
|
|
"joi": "^17.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"bun-types": "^1.2.15",
|
|
"@types/node": "^20.10.5",
|
|
"@types/bull": "^4.10.0",
|
|
"typescript": "^5.3.3",
|
|
"eslint": "^8.56.0"
|
|
}
|
|
}
|