2023-06-03 19:28:07 -07:00
|
|
|
{
|
|
|
|
"name": "socials-to-chat-server",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Server endpoints to process or create content for chatting",
|
|
|
|
"main": "index.js",
|
|
|
|
"author": "Timothy Carambat (Mintplex Labs)",
|
|
|
|
"license": "MIT",
|
|
|
|
"private": false,
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18.12.1"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2023-06-07 21:31:35 -07:00
|
|
|
"dev": "NODE_ENV=development nodemon --ignore documents --ignore vector-cache --trace-warnings index.js",
|
|
|
|
"start": "NODE_ENV=production node index.js",
|
|
|
|
"lint": "yarn prettier --write ./endpoints ./models ./utils index.js"
|
2023-06-03 19:28:07 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@googleapis/youtube": "^9.0.0",
|
|
|
|
"@pinecone-database/pinecone": "^0.1.6",
|
|
|
|
"body-parser": "^1.20.2",
|
2023-06-07 21:31:35 -07:00
|
|
|
"chromadb": "^1.5.2",
|
2023-06-03 19:28:07 -07:00
|
|
|
"cors": "^2.8.5",
|
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"express": "^4.18.2",
|
2023-06-07 21:31:35 -07:00
|
|
|
"langchain": "^0.0.90",
|
2023-06-03 19:28:07 -07:00
|
|
|
"moment": "^2.29.4",
|
|
|
|
"openai": "^3.2.1",
|
|
|
|
"pinecone-client": "^1.1.0",
|
|
|
|
"slugify": "^1.6.6",
|
|
|
|
"sqlite": "^4.2.1",
|
|
|
|
"sqlite3": "^5.1.6",
|
|
|
|
"uuid": "^9.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-07 21:31:35 -07:00
|
|
|
"nodemon": "^2.0.22",
|
|
|
|
"prettier": "^2.4.1"
|
2023-06-03 19:28:07 -07:00
|
|
|
}
|
|
|
|
}
|