-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "deliverme.back",
"version": "1.0.0",
"description": "Back end for the deliverMe project",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --init",
"server": "nodemon server.js"
},
"author": "Miftah Mustapha",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.3"
},
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.3",
"bcryptjs": "^2.4.3",
"concurrently": "^5.1.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.26.0",
"mongoose": "^5.9.9",
"morgan": "^1.10.0",
"nodemailer": "^6.4.8",
"nodemailer-express-handlebars": "^4.0.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"validator": "^13.0.0"
}
}