-
Notifications
You must be signed in to change notification settings - Fork 732
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.65 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@crowd/automatic-projects-discovery-worker",
"scripts": {
"start": "CROWD_TEMPORAL_TASKQUEUE=automatic-projects-discovery SERVICE=automatic-projects-discovery-worker tsx src/main.ts",
"start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && CROWD_TEMPORAL_TASKQUEUE=automatic-projects-discovery SERVICE=automatic-projects-discovery-worker tsx --inspect=0.0.0.0:9232 src/main.ts",
"start:debug": "CROWD_TEMPORAL_TASKQUEUE=automatic-projects-discovery SERVICE=automatic-projects-discovery-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9232 src/main.ts",
"dev:local": "nodemon --watch src --watch ../../libs --ext ts --exec pnpm run start:debug:local",
"dev": "nodemon --watch src --watch ../../libs --ext ts --exec pnpm run start:debug",
"lint": "npx eslint --ext .ts src --max-warnings=0",
"format": "npx prettier --write \"src/**/*.ts\"",
"format-check": "npx prettier --check .",
"tsc-check": "tsc --noEmit"
},
"dependencies": {
"@crowd/archetype-standard": "workspace:*",
"@crowd/archetype-worker": "workspace:*",
"@crowd/common": "workspace:*",
"@crowd/common_services": "workspace:*",
"@crowd/data-access-layer": "workspace:*",
"@crowd/logging": "workspace:*",
"@crowd/redis": "workspace:*",
"@crowd/temporal": "workspace:*",
"@crowd/types": "workspace:*",
"@temporalio/activity": "~1.11.8",
"@temporalio/client": "~1.11.8",
"@temporalio/workflow": "~1.11.8",
"csv-parse": "^5.5.6",
"tsx": "^4.7.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/node": "^20.8.2",
"nodemon": "^3.0.1"
}
}