-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 934 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
36
37
38
{
"name": "emma-backend",
"version": "1.0.0",
"description": "The Backend of EMMA-AI",
"main": "src/app.js",
"engines": {
"node": ">=13.0.1"
},
"engineStrict": true,
"scripts": {
"start": "node ./src/app.js",
"lint": "eslint ./src",
"dev": "npm run lint && npm start",
"deploy": "pm2 start --name \"emma-backend\" npm -- start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EMMA-Emotion-AI/EMMA-Backend.git"
},
"author": "Chris (NullDev) & Joseph (Azgeb)",
"license": "MIT",
"bugs": {
"url": "https://github.com/EMMA-Emotion-AI/EMMA-Backend/issues"
},
"homepage": "https://emma-ai.com",
"devDependencies": {
"@types/node": ">=11.0.0",
"eslint": "^6.7.2",
"pm2": "^5.3.1"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"helmet": "^3.21.2",
"rethinkdbdash": "^2.3.31",
"serve-favicon": "^2.5.0"
}
}