forked from MTPGroup/ba-knowledge-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.71 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "ba-langgraph",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsx esbuild.config.ts",
"start": "node dist/index.js",
"docs:serve": "yarn dev",
"docs:test": "node scripts/test-api-docs.js",
"milvus:ingest": "ts-node scripts/ingest.ts",
"auth:generate": "npx @better-auth/cli generate --config src/lib/auth.ts --output db/better-auth-schema.ts",
"pg:generate": "npx drizzle-kit generate",
"pg:migrate": "npx drizzle-kit migrate"
},
"devDependencies": {
"@better-auth/cli": "^1.2.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.17",
"@types/pg": "^8.15.4",
"@types/swagger-ui-dist": "^3.30.6",
"drizzle-kit": "^0.31.4",
"esbuild": "^0.25.6",
"npm-run-all2": "^6.2.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@hono/node-server": "^1.15.0",
"@hono/zod-openapi": "^1.1.3",
"@hono/zod-validator": "^0.4.1",
"@langchain/community": "^0.3.48",
"@langchain/core": "^0.3.62",
"@langchain/deepseek": "^0.0.2",
"@langchain/google-genai": "^0.2.14",
"@langchain/langgraph": "^0.3.6",
"@langchain/langgraph-checkpoint-postgres": "^0.0.5",
"@langchain/textsplitters": "^0.1.0",
"@scalar/hono-api-reference": "^0.9.20",
"@scalar/openapi-to-markdown": "^0.2.43",
"@zilliz/milvus2-sdk-node": "^2.5.11",
"better-auth": "^1.2.12",
"cos-nodejs-sdk-v5": "^2.15.4",
"dotenv": "^17.0.1",
"drizzle-orm": "^0.44.2",
"front-matter": "^4.0.2",
"hono": "^4.8.4",
"js-yaml": "^4.1.0",
"pg": "^8.16.3",
"tencentcloud-sdk-nodejs-ses": "^4.1.75",
"zod": "^4.1.12"
}
}