-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1 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
{
"name": "friday-blog-app",
"version": "1.0.0",
"description": "Backend for a blog application that uses MongoDB, NodeJS and ExpressJS",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getir-nodejs-bootcamp/friday-blog-app.git"
},
"keywords": [
"mongodb",
"nodejs",
"auth",
"javascript"
],
"author": "Fatih Kaya",
"license": "ISC",
"bugs": {
"url": "https://github.com/getir-nodejs-bootcamp/friday-blog-app/issues"
},
"homepage": "https://github.com/getir-nodejs-bootcamp/friday-blog-app#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.1",
"nodemailer": "^6.7.2",
"twilio": "^3.72.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}