-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "server",
"type": "module",
"scripts": {
"dev": "cross-env ENV=dev tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/src/index.js",
"rag:build": "tsx src/services/agent/rag/ragIndexBuild.ts",
"rag:test": "tsx src/services/agent/rag/queryTest.ts",
"rag:run": "cd src\\services\\agent\\rag\\vdb\\qdrant && qdrant.exe",
"update:mgDB": "npx prisma db push --schema=./src/db/prisma/schema.prisma",
"update:prisma:client": "npx prisma generate --schema=./src/db/prisma/schema.prisma"
},
"dependencies": {
"@hono/node-server": "^1.19.6",
"@langchain/core": "^1.1.40",
"@langchain/deepseek": "^1.0.3",
"@langchain/openai": "^1.4.4",
"@prisma/client": "6.19",
"@qdrant/js-client-rest": "^1.17.0",
"@types/jsonwebtoken": "^9.0.10",
"dotenv": "^17.2.3",
"hono": "^4.11.1",
"jsonwebtoken": "^9.0.3",
"langchain": "^1.2.3",
"nodemailer": "^7.0.12",
"openai": "^6.34.0",
"tiktoken": "^1.0.22"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/nodemailer": "^7.0.5",
"cross-env": "^10.1.0",
"esbuild": "^0.27.4",
"prisma": "^6.19.1",
"tsc": "^2.0.4",
"tsx": "^4.7.1",
"typescript": "^5.8.3"
}
}