This commit is contained in:
Bojan Kucera 2025-06-09 21:19:57 -04:00
parent 22859fb9a6
commit 28e58c3227
3 changed files with 13 additions and 2 deletions

View file

@ -1,5 +1,12 @@
# Root bunfig.toml for Stock Bot Trading Platform # Root bunfig.toml for Stock Bot Trading Platform
# Configures Bun for the entire monorepo workspace # Configures Bun for the entire monorepo workspace
# Look for packages in workspace root
peer = true
workspaces = true
[install.scopes]
"@stock-bot" = { registry = "file:../../" }
[test] [test]
# Configure coverage and test behavior # Configure coverage and test behavior

View file

@ -16,6 +16,7 @@
"@stock-bot/config": "*", "@stock-bot/config": "*",
"@stock-bot/logger": "*", "@stock-bot/logger": "*",
"@stock-bot/types": "*", "@stock-bot/types": "*",
"@types/mongodb": "^4.0.7",
"mongodb": "^6.17.0", "mongodb": "^6.17.0",
"yup": "^1.6.1" "yup": "^1.6.1"
}, },
@ -43,5 +44,8 @@
"files": [ "files": [
"dist", "dist",
"README.md" "README.md"
] ],
"paths": {
"*": ["node_modules/*", "../../node_modules/*"]
}
} }

View file

@ -69,7 +69,7 @@
"bun": ">=1.1.0" "bun": ">=1.1.0"
}, },
"dependencies": { "dependencies": {
"bullmq": "^5.53.2" "bullmq": "^5.53.2",
}, },
"trustedDependencies": ["mongodb"] "trustedDependencies": ["mongodb"]
} }