-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 922 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
36
37
38
39
{
"name": "mailtrap-tutorial",
"version": "1.0.0",
"description": "A Tutorial on sending e-mail and testing with Mailtrap.io",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raydot/mailtrap-node-tut.git"
},
"keywords": [
"email",
"sandbox",
"testing",
"mailtrap",
"node.js",
"express.js"
],
"author": "Dave Kanter",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/raydot/mailtrap-node-tut/issues"
},
"homepage": "https://github.com/raydot/mailtrap-node-tut#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.0",
"morgan": "^1.9.1",
"nodemailer": "^6.1.1",
"validator": "^11.0.0"
},
"devDependencies": {
"nodemon": "^1.19.0",
"standard": "^12.0.1"
}
}