-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 936 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 936 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "mailer",
"version": "1.1.1",
"description": "Simple HTTP server for sending emails via mailgun, sendinblue, gmail or smtp",
"main": "bin/www",
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=mailer* node ./bin/www",
"prod": "NODE_ENV=production node ./bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heroqu/mailer.git"
},
"keywords": [
"mailer",
"mail API",
"nodemailer",
"express",
"server",
"backend",
"gmail",
"mailgun",
"sendinblue",
"smtp"
],
"author": "Heroqu",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"morgan": "^1.9.1",
"nodemailer": "^6.4.2",
"nodemailer-mailgun-transport": "^2.0.0",
"nodemailer-sendinblue-transport": "^1.2.3",
"url-parse": "^1.4.7"
}
}