-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 821 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 821 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
{
"name": "Express-Postgres-Auth-Api",
"version": "1.0.0",
"description": "An authentication system using Postgress and Express",
"main": "server.js",
"repository": "git@github.com:mstars/Express-Postgres-Auth-Api.git",
"author": "mstars <vellackallintothomas@gmail.com> | mahi30795 <mahesh30795@gmail.com>",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"dependencies": {
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"ejs": "^3.0.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.4.6",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^2.0.2",
"pg": "^7.18.2",
"qrcode": "^1.4.4",
"speakeasy": "^2.0.0"
}
}