-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 859 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 859 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
28
29
30
31
32
33
{
"name": "code-agent",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon --watch src --exec 'node -r dotenv/config' src/server.js",
"test": "jest --watch",
"lint": "eslint src",
"format": "prettier --write src"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@huggingface/inference": "^2.0.0",
"@langchain/community": "^0.3.27",
"@langchain/core": "^0.3.36",
"@pinecone-database/pinecone": "^1.0.0",
"@upstash/redis": "^1.34.3",
"axios": "^1.0.0",
"dockerode": "^3.0.0",
"duck-duck-scrape": "^2.2.7",
"fastify": "^5.2.1",
"react-markdown": "^9.0.3"
},
"devDependencies": {
"dotenv": "^16.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"supertest": "^6.0.0"
}
}