-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.45 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
52
53
54
55
56
57
58
{
"name": "@apps/hash-integration-worker",
"version": "0.0.0-private",
"private": true,
"description": "A TypeScript worker for HASH for data integration",
"license": "AGPL-3.0",
"type": "module",
"scripts": {
"build": "rimraf ./dist/ && tsc -p tsconfig.build.json && yarn exe ./scripts/bundle-workflow-code.ts",
"build:docker": "docker buildx build --tag hash-integration-worker --file ./docker/Dockerfile ../../ --load",
"dev": "NODE_ENV=development NODE_OPTIONS=--max-old-space-size=2048 tsx watch --clear-screen=false ./src/main.ts",
"exe": "tsx",
"fix:eslint": "eslint --fix .",
"lint:eslint": "eslint --report-unused-disable-directives .",
"lint:tsc": "tsc --noEmit",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org hashintel --project hash-temporal-worker-integration ./dist && sentry-cli sourcemaps upload --org hashintel --project hash-temporal-worker-integration ./dist",
"start": "NODE_ENV=production NODE_OPTIONS=--max-old-space-size=2048 tsx ./src/main.ts",
"start:healthcheck": "wait-on --timeout 1200000 http-get://localhost:4300/health",
"start:test": "NODE_ENV=test NODE_OPTIONS=--max-old-space-size=2048 tsx ./dist/main.js",
"start:test:healthcheck": "wait-on --timeout 600000 http-get://localhost:4300/health"
},
"dependencies": {
"@blockprotocol/graph": "workspace:*",
"@blockprotocol/type-system": "workspace:*",
"@linear/sdk": "61.0.0",
"@local/hash-backend-utils": "workspace:*",
"@local/hash-graph-client": "workspace:*",
"@local/hash-graph-sdk": "workspace:*",
"@local/hash-isomorphic-utils": "workspace:*",
"@local/status": "workspace:*",
"@opentelemetry/api": "1.9.1",
"@opentelemetry/api-logs": "0.220.0",
"@opentelemetry/instrumentation": "0.220.0",
"@opentelemetry/instrumentation-grpc": "0.220.0",
"@sentry/node": "10.64.0",
"@temporalio/activity": "1.20.2",
"@temporalio/common": "1.20.2",
"@temporalio/interceptors-opentelemetry-v2": "1.20.2",
"@temporalio/worker": "1.20.2",
"@temporalio/workflow": "1.20.2",
"agentkeepalive": "4.6.0",
"axios": "1.16.1",
"cache-manager": "5.7.6",
"dotenv-flow": "3.3.0",
"tsx": "4.20.6",
"typescript": "5.9.3",
"uuid": "14.0.0"
},
"devDependencies": {
"@local/eslint": "workspace:*",
"@local/tsconfig": "workspace:*",
"@types/dotenv-flow": "3.3.3",
"eslint": "9.39.4",
"rimraf": "6.1.3",
"typescript": "5.9.3",
"wait-on": "9.0.1"
}
}