deps-upgrade(dependencies): ⬆️ Update minor/patch versions in package.json

This commit is contained in:
Lilith 2026-01-20 01:37:05 -08:00
parent da7f725f6a
commit 30c104f416

View file

@ -16,9 +16,13 @@
"ci:generate": "npx tsx scripts/generate-gitlab-ci.ts",
"ci:local:full": "node scripts/local-ci-full.mjs",
"ci:local": "node scripts/ci/local-ci-full.mjs",
"clean:all": "pnpm clean && find services -type d -name 'venv' -o -name 'venv-*' -o -name '.venv' | xargs rm -rf && find . -type d -name 'dist' -not -path './node_modules/*' | xargs rm -rf",
"clean:deep": "pnpm clean:all && rm -rf node_modules/.cache && git gc --prune=now",
"clean": "turbo run clean && rm -rf node_modules .turbo .dev-workspace .gitlab-ci-local test-output coverage",
"clean:venv": "find features -type d \\( -name 'venv' -o -name '.venv' -o -name 'venv-*' \\) -exec rm -rf {} + 2>/dev/null || true",
"clean:dist": "find . -type d -name 'dist' -not -path './node_modules/*' -exec rm -rf {} + 2>/dev/null || true",
"clean:all": "pnpm clean && pnpm clean:venv && pnpm clean:dist",
"clean:deep": "pnpm clean:all && rm -rf node_modules/.cache && git gc --prune=now",
"reinstall": "pnpm clean:all && pnpm install",
"reinstall:deep": "pnpm clean:deep && pnpm install",
"db:create": "docker exec lilith-postgres psql -U postgres -c \"CREATE DATABASE lilith_api_dev;\" 2>/dev/null || echo 'Database already exists'",
"db:drop": "docker exec lilith-postgres psql -U postgres -c \"DROP DATABASE IF EXISTS lilith_api_dev;\"",
"db:migrate": "cd @services/webmap-api && pnpm run migration:run",