forked from restackio/examples-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "gotohuman-example",
"version": "1.0.0",
"description": "gotoHuman | Restack example. Easily keep a human in the loop.",
"main": "index.js",
"scripts": {
"start": "ts-node src/services.ts",
"start.watch": "nodemon src/services.ts",
"dev": "pnpm start.watch",
"build": "tsc --build",
"clean": "rm -rf node_modules",
"schedule": "ts-node ./scheduleWorkflow.ts",
"endpoint": "ts-node ./handleHumanResponse.ts",
"restack-up": "node restack_up.mjs"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@restackio/ai": "^0.0.85",
"@temporalio/workflow": "^1.11.2",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"gotohuman": "~0.2.4",
"openai": "^4.71.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.16.10",
"nodemon": "^2.0.22",
"ts-node": "^10.9.2"
}
}