-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "temporal-hello-world",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"start": "ts-node src/process-documents-worker.ts && ts-node src/invoke-prompt-worker.ts",
"process-documents": "ts-node src/process-documents-client.ts",
"invoke-prompt": "ts-node src/invoke-prompt-client.ts",
"test-prompts": "ts-node src/test-prompts-client.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.504.0",
"@langchain/community": "^0.0.37",
"@langchain/openai": "^0.0.19",
"@temporalio/activity": "^1.9.0",
"@temporalio/client": "^1.9.0",
"@temporalio/worker": "^1.9.0",
"@temporalio/workflow": "^1.9.0",
"archiver": "^6.0.1",
"dotenv": "^16.4.5",
"extract-zip": "^2.0.1",
"nanoid": "3.x",
"pg": "^8.11.3"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.0",
"@types/archiver": "^6.0.2",
"@types/node": "^20.17.3",
"@types/pg": "^8.11.2",
"nodemon": "^3.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.4.2"
}
}