-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
40
41
42
43
{
"name": "email-auth-node",
"version": "0.0.1",
"description": "This package helps building a production ready server for OTP verification",
"main": "index.js",
"bin": {
"email-auth-node": "./bin/cli.js"
},
"scripts": {
"start": "node server/index.js %npm_config_log%",
"dev": "nodemon server/index.js %npm_config_log%"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saran-surya/production.git"
},
"keywords": [
"OTP",
"email",
"verification",
"email"
],
"author": "Saran Surya",
"license": "MIT",
"bugs": {
"url": "https://github.com/saran-surya/production/issues"
},
"homepage": "https://github.com/saran-surya/production#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"nodejs-nodemailer-outlook": "^1.2.4",
"nodemailer": "^6.9.1"
},
"devDependencies": {
"autoprefixer": "^10.3.1",
"nodemon": "^2.0.12",
"postcss": "^8.3.6",
"tailwindcss": "^2.2.7"
}
}