-
Notifications
You must be signed in to change notification settings - Fork 730
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@crowd/data-sink-worker",
"private": true,
"scripts": {
"start": "SERVICE=data-sink-worker LOG_LEVEL=trace tsx src/main.ts",
"start:debug:local": "set -a && . ../../../backend/.env.dist.local && . ../../../backend/.env.override.local && set +a && SERVICE=data-sink-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9233 src/main.ts",
"start:debug": "SERVICE=data-sink-worker LOG_LEVEL=trace tsx --inspect=0.0.0.0:9233 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",
"script:restart-failed-results": "SERVICE=script tsx src/bin/restart-failed-results.ts",
"script:restart-all-failed-results": "SERVICE=script tsx src/bin/restart-all-failed-results.ts",
"script:restart-x-failed-results": "SERVICE=script tsx src/bin/restart-x-failed-results.ts",
"script:restart-result": "SERVICE=script tsx src/bin/restart-result.ts",
"script:process-results": "SERVICE=script tsx src/bin/process-results.ts",
"script:trigger-results-for-tenant": "SERVICE=script tsx src/bin/trigger-results-for-tenant.ts",
"script:fix-activity-obj-member-data": "SERVICE=script tsx src/bin/fix-activity-obj-member-data.ts",
"script:fix-member-displayName": "SERVICE=script tsx src/bin/fix-member-displayName.ts",
"script:fix-members-joinedAt": "SERVICE=script tsx src/bin/fix-members-joinedAt.ts",
"script:debug-process-results": "SERVICE=script tsx --inspect=0.0.0.0:9233 src/bin/debug-process-results.ts"
},
"dependencies": {
"@crowd/common": "workspace:*",
"@crowd/common_services": "workspace:*",
"@crowd/data-access-layer": "workspace:*",
"@crowd/integrations": "workspace:*",
"@crowd/logging": "workspace:*",
"@crowd/opensearch": "workspace:*",
"@crowd/queue": "workspace:*",
"@crowd/redis": "workspace:*",
"@crowd/telemetry": "workspace:*",
"@crowd/temporal": "workspace:*",
"@crowd/types": "workspace:*",
"@types/config": "^3.3.0",
"@types/node": "^18.16.3",
"config": "^3.3.9",
"crowd-sentiment": "^1.1.7",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"lodash.uniqby": "^4.7.0",
"moment-timezone": "^0.5.34",
"tsx": "^4.7.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}