-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "temporal-hello-world",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"lint": "eslint .",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/client.ts"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "^0.17.2",
"@temporalio/client": "^0.17.2",
"@temporalio/worker": "^0.17.2",
"@temporalio/workflow": "^0.17.2",
"ms": "^2.1.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@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",
"eslint-plugin-quick-prettier": "0.0.29",
"nodemon": "^2.0.12",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"@types/ms": "^0.7.31",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}