updating build

This commit is contained in:
Bojan Kucera 2025-06-07 14:46:39 -04:00
parent a8ee4022bf
commit 8be4bfe6f2
8 changed files with 122 additions and 34 deletions

View file

@ -3,6 +3,7 @@
"private": true,
"version": "1.0.0",
"description": "Advanced trading bot with microservice architecture",
"type": "module",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
@ -16,9 +17,12 @@
"test:libs": "turbo run test --filter='./libs/*'",
"test:apps": "turbo run test --filter=./apps/*/*",
"lint": "turbo run lint",
"clean": "turbo run clean",
"start": "turbo run start",
"clean:dist": "rimraf **/dist",
"clean": "turbo run clean",
"clean:dist": "powershell ./scripts/clean.ps1 -dist",
"clean:modules": "powershell ./scripts/clean.ps1 -modules",
"clean:all": "powershell ./scripts/clean.ps1 -all",
"clean:fresh": "powershell ./scripts/clean.ps1 -fresh",
"backtest": "turbo run backtest",
"docker:start": "powershell ./scripts/docker.ps1 start",
"docker:stop": "powershell ./scripts/docker.ps1 stop",