-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.58 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
{
"name": "features",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"build": "tsc --build",
"lint": "eslint features harness/ts && prettier --end-of-line auto --check \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register harness/ts/main.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@google-cloud/storage": "^7.0.0",
"@grpc/grpc-js": "^1.12.4",
"@protobuf-ts/protoc": "^2.8.1",
"@temporalio/activity": "^1.21.1",
"@temporalio/client": "^1.21.1",
"@temporalio/common": "^1.21.1",
"@temporalio/external-storage-gcs": "^1.21.1",
"@temporalio/external-storage-gcs-google-sdk": "^1.21.1",
"@temporalio/external-storage-s3": "^1.21.1",
"@temporalio/external-storage-s3-aws-sdk": "^1.21.1",
"@temporalio/plugin": "^1.21.1",
"@temporalio/proto": "^1.21.1",
"@temporalio/worker": "^1.21.1",
"@temporalio/workflow": "^1.21.1",
"commander": "^8.3.0",
"ms": "^3.0.0-canary.1",
"nexus-rpc": "^0.0.1",
"proto3-json-serializer": "^1.1.1",
"protobufjs": "7.5.1"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/ms": "^2.1.0",
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.26.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.1.1",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.10.0"
}
}