-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "custom-search-attributes-sample",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"lint": "eslint .",
"start": "ts-node src/worker.ts",
"start.watch": "nodemon src/worker.ts",
"workflow": "ts-node src/client.ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@temporalio/activity": "~1.10.0",
"@temporalio/client": "~1.10.0",
"@temporalio/common": "~1.10.0",
"@temporalio/worker": "~1.10.0",
"@temporalio/workflow": "~1.10.0",
"nanoid": "3.x",
"proto3-json-serializer": "^2.0.0"
},
"devDependencies": {
"@tsconfig/node20": "^1.0.2",
"@types/mocha": "8.x",
"@types/node": "^20.14.9",
"@types/sinon": "^10.0.4",
"@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",
"mocha": "8.x",
"nodemon": "^3.1.4",
"prettier": "^2.3.2",
"sinon": "^11.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}