-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 947 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
{
"name": "express-auth",
"version": "1.0.0",
"description": "Implementation of api authentication using JWT with email verification",
"main": "index.js",
"scripts": {
"watch": "nodemon --exec babel-node src/index.js",
"build": "babel src --out-dir dist",
"start": "babel src --out-dir dist && node dist/index.js"
},
"keywords": [],
"author": "Sudeep Gumaste",
"license": "DBAD",
"dependencies": {
"@hapi/joi": "^17.0.2",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.9",
"morgan": "^1.10.0",
"nodemailer": "^6.6.1",
"redis": "^3.1.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.2"
}
}