-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.75 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
58
{
"name": "temporal-timer",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build ./tsconfig.json",
"build.once": "tsc --build --watch ./tsconfig.json",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"test": "mocha --require ts-node/register --require source-map-support/register src/test/*.test.ts",
"test.watch": "mocha --require ts-node/register --require source-map-support/register src/test/*.test.ts -w --watch-files src",
"workflow-fast": "ts-node src/clients/fast.ts",
"workflow-slow": "ts-node src/clients/slow.ts",
"workflow-updating": "ts-node src/clients/updating-timer.ts"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "^1.17.2",
"@temporalio/client": "^1.17.2",
"@temporalio/envconfig": "^1.17.2",
"@temporalio/worker": "^1.17.2",
"@temporalio/workflow": "^1.17.2",
"axios": "0.28.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@temporalio/testing": "^1.17.2",
"@tsconfig/node22": "^22.0.0",
"@types/mocha": "^9.1.1",
"@types/ms": "^0.7.31",
"@types/node": "^22.9.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"mocha": "^10.0.0",
"ms": "^2.1.3",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"uuid": "^8.3.2"
}
}