-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 756 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 756 Bytes
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
{
"name": "node-rag",
"version": "1.0.0",
"description": "RAG system with Node.js backend and React frontend",
"main": "backend/src/index.js",
"scripts": {
"start": "node backend/src/index.js",
"dev": "nodemon backend/src/index.js",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-bedrock-agent": "^3.803.0",
"@aws-sdk/client-bedrock-agent-runtime": "^3.803.0",
"@aws-sdk/client-bedrock-runtime": "^3.0.0",
"@aws-sdk/client-cognito-identity-provider": "^3.0.0",
"@aws-sdk/client-s3": "^3.0.0",
"aws-sdk": "^2.1499.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.1"
}
}