forked from restackio/examples-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "restack-examples-ts-express-together-llamaindex",
"version": "0.0.1",
"description": "Basic Express example",
"scripts": {
"dev": "tsx watch --include src src/server.ts",
"clean": "rm -rf node_modules",
"build": "tsc --build",
"docker:build": "docker build -t restack-express-together-llamaindex .",
"docker:run": "docker run -p 8000:8000 --network restack-net --env-file .env --env RESTACK_ENGINE_ADDRESS=http://localhost:6233 restack-express-together-llamaindex",
"docker:dev": "pnpm docker:build && pnpm docker:run"
},
"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",
"llamaindex": "^0.8.4",
"together-ai": "^0.9.0",
"tsx": "^4.19.2",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.16.9",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}