-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.03 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
59
60
61
62
63
64
65
66
{
"name": "temporal-activities-examples",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"jest": "jest",
"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/mocha/*.test.ts",
"test.watch": "mocha --require ts-node/register --require source-map-support/register src/mocha/*.test.ts -w --watch-files src",
"test.coverage": "nyc --reporter=lcov --reporter=text-summary mocha --require ts-node/register --require source-map-support/register src/mocha/*.test.ts",
"workflow": "ts-node src/client.ts"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "^1.15.0",
"@temporalio/client": "^1.15.0",
"@temporalio/common": "^1.15.0",
"@temporalio/envconfig": "^1.15.0",
"@temporalio/worker": "^1.15.0",
"@temporalio/workflow": "^1.15.0",
"axios": "^0.28.0",
"node-fetch": "2.x"
},
"devDependencies": {
"@temporalio/nyc-test-coverage": "^1.15.0",
"@temporalio/testing": "^1.15.0",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^27.5.1",
"@types/mocha": "8.x",
"@types/node": "^22.9.1",
"@types/node-fetch": "^2.5.12",
"@types/sinon": "^10.0.4",
"@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",
"jest": "^28.1.0",
"mocha": "8.x",
"nodemon": "^3.1.7",
"nyc": "15.1.0",
"prettier": "^3.4.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.21",
"ts-jest": "^28.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"uuid": "^8.3.2",
"webpack": "5.96.1"
}
}