-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 KB
/
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
39
40
41
42
43
44
{
"name": "lifeline_backend",
"version": "1.0.0",
"description": "An engaging educational game designed to raise awareness about best safety practices during natural disasters",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "cross-env NODE_ENV=development nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Co-Lab-You-Belong-in-Tech/Lifeline_backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Co-Lab-You-Belong-in-Tech/Lifeline_backend/issues"
},
"homepage": "https://github.com/Co-Lab-You-Belong-in-Tech/Lifeline_backend#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^6.12.1",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"socket.io": "^4.7.2",
"validator": "^13.11.0",
"winston": "^3.10.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"nodemon": "^3.0.1"
}
}