added logger

This commit is contained in:
Bojan Kucera 2025-06-03 18:31:02 -04:00
parent dd27f3bf2c
commit 58ae897e90
13 changed files with 1493 additions and 12 deletions

View file

@ -2,19 +2,18 @@
"name": "data-processor",
"version": "1.0.0",
"description": "Data processing and pipeline orchestration service",
"main": "src/index.ts",
"scripts": {
"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",
"build": "bun build src/index.ts --outdir=dist --target=bun",
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
},"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",