-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
50 lines (50 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "temporal-protobufs",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/client.ts",
"build": "npm-run-all build:protos build:ts",
"build.watch": "npm-run-all build:protos build:ts-watch",
"build:ts": "tsc --build",
"build:ts-watch": "tsc --build --watch",
"build:protos": "pbjs -t json-module -w commonjs -r protobuf-sample -o protos/json-module.js protos/*.proto && pbjs -t static-module protos/*.proto | pbts -o protos/root.d.ts -",
"lint": "eslint ."
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "^1.11.3",
"@temporalio/client": "^1.11.3",
"@temporalio/worker": "^1.11.3",
"@temporalio/workflow": "^1.11.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.0",
"@types/node": "^16.11.43",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^1.2.1",
"installing": "^1.0.0",
"jsdoc": "^3.6.10",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"protobufjs": "6.11.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}