-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
35 lines (35 loc) · 1.11 KB
/
package.json
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": "features",
"private": true,
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"build": "tsc --build",
"lint": "eslint features harness/ts --ext .ts --no-error-on-unmatched-pattern && prettier --end-of-line auto --check \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register harness/ts/main.ts"
},
"dependencies": {
"@protobuf-ts/protoc": "^2.8.1",
"@temporalio/activity": "^1.11.1",
"@temporalio/client": "^1.11.1",
"@temporalio/common": "^1.11.1",
"@temporalio/proto": "^1.11.1",
"@temporalio/worker": "^1.11.1",
"@temporalio/workflow": "^1.11.1",
"commander": "^8.3.0",
"ms": "^3.0.0-canary.1",
"proto3-json-serializer": "^1.1.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-tsdoc": "^0.2.14",
"prettier": "^2.3.2",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.2"
}
}