-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 KB
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": "mindfulchat",
"version": "1.0.0",
"description": "MindfulChat - AI-powered mental health support chatbot with BERT sentiment analysis and Google Gemini",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "node app.js",
"sentiment-service": "cd sentiment_service && python app.py",
"start-all": "powershell -Command \"Start-Process powershell -ArgumentList '-Command cd sentiment_service; python app.py' ; node app.js\""
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"axios": "^1.7.9",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.10.1",
"morgan": "^1.10.0"
},
"keywords": [
"mental-health",
"chatbot",
"sentiment-analysis",
"gemini",
"bert"
],
"author": "",
"license": "ISC"
}