mailapi/package.json

19 lines
411 B
JSON
Raw Normal View History

2021-11-24 10:59:39 -07:00
{
"name": "mailapi",
"version": "1.0.0",
"description": "API to check hCaptcha and sendmail",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
2021-11-24 10:59:39 -07:00
},
"author": "Keith Irwin",
2021-11-24 11:02:52 -07:00
"license": "MIT",
"dependencies": {
2023-04-01 00:00:33 -06:00
"body-parser": "^1.20.2",
2021-11-24 11:19:34 -07:00
"dotenv": "^10.0.0",
2023-04-01 00:00:33 -06:00
"express": "^4.18.2",
"nodemailer": "^6.9.1"
2021-11-24 11:02:52 -07:00
}
2021-11-24 10:59:39 -07:00
}