added dev:docker helper script into package.json

This commit is contained in:
Oleksandr Kucherenko 2024-10-05 22:15:46 +02:00
parent b62abdced9
commit 00447296d7
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,7 @@
"dev:backend": "npx nx run backend:serve:development",
"dev:workers": "npx nx run workers:serve:development",
"dev:cron": "npx nx run cron:serve:development",
"dev:docker": "docker compose -f ./docker-compose.dev.yaml up -d",
"start:prod": "node dist/apps/backend/main.js",
"start:prod:frontend": "nx run frontend:serve:production",
"start:prod:workers": "node dist/apps/workers/main.js",
@ -193,5 +194,8 @@
"typescript": "5.5.4",
"vite": "^5.0.0",
"vitest": "1.6.0"
},
"volta": {
"node": "20.17.0"
}
}