-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
33 lines (33 loc) · 867 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
{
"name": "emotion-detection-using-js",
"version": "1.0.0",
"description": "A JS application used to detect face emotions",
"main": "backend/server.js",
"type": "module",
"scripts": {
"start": "nodemon `backend/server.js`",
"dump": "node database/dump.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrsparkle-70/Emotion-detection-using-JS.git"
},
"keywords": [
"emotions.",
"machine-learning"
],
"author": "Subham Sinha",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrsparkle-70/Emotion-detection-using-JS/issues"
},
"homepage": "https://github.com/mrsparkle-70/Emotion-detection-using-JS#readme",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"mongoose": "^7.0.1",
"nodemon": "^2.0.21"
}
}