LibreChat/api/package.json

39 lines
945 B
JSON
Raw Normal View History

2023-03-06 10:15:07 -05:00
{
"name": "chatgpt-clone",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
2023-03-06 18:17:43 -05:00
"start": "node server/index.js",
2023-03-06 10:15:07 -05:00
"server-dev": "npx nodemon server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danny-avila/chatgpt-clone.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danny-avila/chatgpt-clone/issues"
},
"homepage": "https://github.com/danny-avila/chatgpt-clone#readme",
"dependencies": {
"@keyv/mongo": "^2.1.8",
2023-03-06 10:28:37 -05:00
"@vscode/vscode-languagedetection": "^1.0.22",
2023-03-09 16:09:53 -05:00
"@waylaidwanderer/chatgpt-api": "^1.28.2",
2023-03-06 10:15:07 -05:00
"cors": "^2.8.5",
"dotenv": "^16.0.3",
2023-03-06 10:28:37 -05:00
"express": "^4.18.2",
2023-03-06 10:15:07 -05:00
"keyv": "^4.5.2",
"keyv-file": "^0.2.0",
"lodash": "^4.17.21",
2023-03-06 10:15:07 -05:00
"mongoose": "^6.9.0",
2023-03-06 10:28:37 -05:00
"openai": "^3.1.0"
2023-03-06 10:15:07 -05:00
},
"devDependencies": {
"nodemon": "^2.0.20",
"path": "^0.12.7"
}
}