-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "social-media-app",
"version": "1.0.0",
"description": "A social media app for developers",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"debug": "ndb server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SundayOlubode/social-media-app.git"
},
"author": "Circle-7, AltSchool Africa",
"license": "MIT",
"bugs": {
"url": "https://github.com/SundayOlubode/social-media-app/issues"
},
"homepage": "https://github.com/SundayOlubode/social-media-app#readme",
"dependencies": {
"axios": "^1.3.2",
"bad-words": "^3.0.4",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.33.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-session": "^1.17.3",
"html-to-text": "^9.0.3",
"ip": "^1.1.8",
"joi": "^17.7.0",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.0.1",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1",
"nodemailer-mailgun-transport": "^2.1.5",
"passport": "^0.6.0",
"passport-github2": "^0.1.12",
"passport-google-oauth2": "^0.2.0",
"pug": "^3.0.2",
"sequelize": "^6.28.0"
},
"devDependencies": {
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"nodemon": "^2.0.20",
"winston": "^3.8.2"
}
}