-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 870 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
34
35
36
37
38
39
40
41
{
"name": "smg-chatbot-backend",
"version": "2.0.0",
"description": "Scalable backend for SMG Electric Scooters Chatbot with MongoDB, JWT Auth, and Admin Panel",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"seed": "node src/utils/seedAdmin.js"
},
"keywords": [
"chatbot",
"express",
"mongodb",
"jwt",
"api",
"smg",
"electric-scooters"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"natural": "^8.1.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=18.0.0"
},
"optionalDependencies": {
"@google/generative-ai": "^0.2.0",
"openai": "^4.0.0"
}
}