-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 822 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 822 Bytes
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
{
"name": "express-lanch-box",
"version": "0.0.0",
"description": "Boilerplate for creating a production-ready Express server",
"main": "server.js",
"scripts": {
"start": "node -r dotenv/config server.js",
"dev": "nodemon -r dotenv/config server.js dotenv_config_path=./.env.dev"
},
"keywords": [],
"author": "Onyegbu Ifedili",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.13",
"passport": "^0.4.1",
"shortid": "^2.2.15"
},
"devDependencies": {
"jest": "^26.4.2",
"nodemon": "^1.19.4"
}
}