-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 883 Bytes
/
package.json
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
{
"name": "ai-chatbox",
"version": "1.0.0",
"description": "A simple chatbot powered by ChatGPT 3.5, built with Node.js",
"type": "commonjs",
"main": "server.js",
"scripts": {
"dev": "set NODE_ENV=development && nodemon server.js",
"build": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romaniso/ai-chatbox.git"
},
"keywords": [],
"author": "Roman Isopenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/romaniso/ai-chatbox/issues"
},
"homepage": "https://github.com/romaniso/ai-chatbox#readme",
"dependencies": {
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"node-cache": "^5.1.2",
"openai": "^4.47.3"
},
"devDependencies": {
"nodemon": "^3.1.2"
}
}