-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 778 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 778 Bytes
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
{
"name": "hello-world-js",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"start": "node src/worker.js",
"start.watch": "nodemon src/worker.js",
"workflow": "node src/client.js"
},
"nodemonConfig": {
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "^1.16.0",
"@temporalio/client": "^1.16.0",
"@temporalio/envconfig": "^1.16.0",
"@temporalio/worker": "^1.16.0",
"@temporalio/workflow": "^1.16.0"
},
"devDependencies": {
"@types/node": "^22.9.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.2"
}
}