|
| 1 | +{ |
| 2 | + "name": "@crowd/pcc-sync-worker", |
| 3 | + "scripts": { |
| 4 | + "start": "CROWD_TEMPORAL_TASKQUEUE=pccSync SERVICE=pcc-sync-worker tsx src/index.ts", |
| 5 | + "start:debug": "CROWD_TEMPORAL_TASKQUEUE=pccSync SERVICE=pcc-sync-worker LOG_LEVEL=debug tsx src/index.ts", |
| 6 | + "start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=pccSync SERVICE=pcc-sync-worker LOG_LEVEL=debug tsx src/index.ts", |
| 7 | + "dev": "nodemon --watch src --watch ../../libs --ext ts --exec pnpm run start:debug", |
| 8 | + "dev:local": "nodemon --watch src --watch ../../libs --ext ts --exec pnpm run start:debug:local", |
| 9 | + "lint": "npx eslint --ext .ts src --max-warnings=0", |
| 10 | + "format": "npx prettier --write \"src/**/*.ts\"", |
| 11 | + "format-check": "npx prettier --check .", |
| 12 | + "tsc-check": "tsc --noEmit", |
| 13 | + "trigger-export": "SERVICE=pcc-sync-worker tsx src/scripts/triggerExport.ts", |
| 14 | + "trigger-export:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=pcc-sync-worker tsx src/scripts/triggerExport.ts", |
| 15 | + "trigger-cleanup": "SERVICE=pcc-sync-worker tsx src/scripts/triggerCleanup.ts", |
| 16 | + "trigger-cleanup:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=pcc-sync-worker tsx src/scripts/triggerCleanup.ts" |
| 17 | + }, |
| 18 | + "dependencies": { |
| 19 | + "@crowd/archetype-standard": "workspace:*", |
| 20 | + "@crowd/archetype-worker": "workspace:*", |
| 21 | + "@crowd/common": "workspace:*", |
| 22 | + "@crowd/database": "workspace:*", |
| 23 | + "@crowd/types": "workspace:*", |
| 24 | + "@crowd/logging": "workspace:*", |
| 25 | + "@crowd/slack": "workspace:*", |
| 26 | + "@crowd/snowflake": "workspace:*", |
| 27 | + "@crowd/temporal": "workspace:*", |
| 28 | + "@temporalio/client": "~1.11.8", |
| 29 | + "@temporalio/workflow": "~1.11.8", |
| 30 | + "tsx": "^4.7.1", |
| 31 | + "typescript": "^5.6.3" |
| 32 | + }, |
| 33 | + "devDependencies": { |
| 34 | + "nodemon": "^3.0.1" |
| 35 | + } |
| 36 | +} |
0 commit comments