-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 907 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
{
"name": "hephaestus",
"version": "1.0.0",
"description": "A conversational chat bot powered by Open AI's ChatGPT!",
"main": "app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "NODE_ENV=dev nodemon app.js",
"start:prod": "NODE_ENV=prod node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Suyash-Purwar/Hephaestus.git"
},
"author": "Suyash Purwar",
"license": "ISC",
"bugs": {
"url": "https://github.com/Suyash-Purwar/Hephaestus/issues"
},
"homepage": "https://github.com/Suyash-Purwar/Hephaestus#readme",
"dependencies": {
"axios": "^1.2.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-status": "^1.5.3",
"http-status-code": "^2.1.0",
"mongoose": "^6.9.0",
"openai": "^3.1.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}