-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 955 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
37
38
39
40
41
42
{
"name": "press-play",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "jest --env=node --watchAll --verbose --coverage --runInBand"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.5",
"bcrypt": "^5.0.0",
"cloudinary": "^1.23.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^17.3.0",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mailgen": "^2.0.14",
"mailgun-js": "^0.22.0",
"mongoose": "^5.11.13",
"multer": "^1.4.2",
"nodemailer": "^6.4.17",
"winston": "^2.4.5"
},
"engines": {
"node": "12.20.1"
},
"devDependencies": {
"nodemon": "^2.0.7",
"handlebars": "^4.5.0",
"jest": "^22.2.2",
"supertest": "^3.0.0"
}
}