-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1009 Bytes
/
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": "saga-pattern-demo",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"check": "biome check --apply .",
"format": "biome format .",
"lint": "biome lint .",
"server:dev": "temporal server start-dev",
"start": "tsx src/worker.ts",
"start:dev": "wait-on -d 1000 -l tcp:8233 && run-p -l start:workflow start:worker",
"start:worker": "tsx watch src/worker.ts",
"start:workflow": "tsx watch src/client.ts",
"dev": "run-p -l server:dev start:dev"
},
"dependencies": {
"@paralleldrive/cuid2": "2.2.2",
"@temporalio/activity": "1.11.3",
"@temporalio/client": "1.11.3",
"@temporalio/worker": "1.11.3",
"@temporalio/workflow": "1.11.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/node20": "20.1.4",
"@types/node": "22.9.1",
"npm-run-all2": "6.2.6",
"tsup": "8.3.5",
"tsx": "4.19.2",
"typescript": "5.6.3",
"wait-on": "8.0.1"
}
}