-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 915 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
{
"name": "social-media-api",
"version": "1.0.0",
"description": "A RESTful API for social media apps.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guru-bandike/Social-Media-API.git"
},
"author": "Guru Bandike",
"license": "ISC",
"bugs": {
"url": "https://github.com/guru-bandike/Social-Media-API/issues"
},
"homepage": "https://github.com/guru-bandike/Social-Media-API#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-useragent": "^1.0.15",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.7.0",
"mongoose": "^8.4.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"winston": "^3.13.0"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}