-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.29 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
{
"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": {
"@grpc/grpc-js": "^1.12.4",
"@protobuf-ts/protoc": "^2.8.1",
"@temporalio/activity": "latest",
"@temporalio/client": "latest",
"@temporalio/common": "latest",
"@temporalio/plugin": "latest",
"@temporalio/proto": "latest",
"@temporalio/worker": "latest",
"@temporalio/workflow": "latest",
"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"
}
}