-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 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
{
"name": "knowledge-base-rag",
"version": "1.0.0",
"description": "RAG-powered personal knowledge base with chat interface",
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
"server:dev": "tsx watch src/server.ts",
"client:dev": "vite",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc",
"build:client": "vite build",
"start": "node dist/server.js",
"test": "vitest"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"langchain": "^0.1.17",
"pinecone-client": "^2.2.2",
"pdf-parse": "^1.1.1",
"multer": "^1.4.5-lts.1",
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.4.1",
"lucide-react": "^0.292.0"
},
"devDependencies": {
"typescript": "^5.2.2",
"tsx": "^4.1.0",
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"vite": "^5.0.0",
"@vitejs/plugin-react": "^4.1.0",
"concurrently": "^8.2.1",
"vitest": "^0.34.0"
}
}