-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.42 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.42 KB
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
{
"name": "temporal-subscription-workflow-project",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/scripts/execute-workflow.ts",
"querybillinginfo": "ts-node src/scripts/query-billinginfo.ts",
"cancelsubscription": "ts-node src/scripts/cancel-subscription.ts",
"updatechargeamount": "ts-node src/scripts/update-chargeamt.ts",
"lint": "eslint .",
"test": "mocha --exit --require ts-node/register --require source-map-support/register src/mocha/*.test.ts"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "^1.10.0",
"@temporalio/client": "^1.10.0",
"@temporalio/worker": "^1.10.0",
"@temporalio/workflow": "^1.10.0",
"@types/node": "^20.14.2"
},
"devDependencies": {
"@temporalio/testing": "^1.10.0",
"@types/mocha": "8.x",
"@tsconfig/node20": "^1.0.2",
"@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",
"nodemon": "^3.1.3",
"mocha": "8.x",
"prettier": "^2.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}