-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.09 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
44
45
46
47
48
49
50
51
{
"name": "express-smtp-mailer",
"version": "2.0.0",
"prettier": "mj-pa",
"description": "Efficient & Secure Node Server -- Built with Express, Nodemailer, and Gmail",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "nodemon server",
"test": "mocha ./test/test",
"start": "node server"
},
"cacheDirectories": [
"node_modules"
],
"repository": {
"type": "git",
"url": "https://github.com/killshot13/express-smtp-mailer"
},
"keywords": [
"express",
"smtp",
"nodemailer",
"node",
"gmail"
],
"author": "killshot13 (Michael Rehnert)",
"license": "MIT",
"bugs": {
"url": "https://github.com/killshot13/express-smtp-mailer/issues"
},
"homepage": "https://github.com/killshot13/express-smtp-mailer#readme",
"dependencies": {
"body-parser": "^1.19.1",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-rate-limit": "^6.2.0",
"nodemailer": "^6.7.2"
},
"devDependencies": {
"eslint": "^8.8.0",
"mj-pa": "^2.0.0",
"mocha": "^9.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"should": "^13.2.3",
"supertest": "^6.2.2"
}
}