mailapi/package.json

20 lines
437 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": {
2021-11-24 18:09:22 -07:00
"body-parser": "^1.19.0",
2021-11-24 11:19:34 -07:00
"dotenv": "^10.0.0",
"express": "^4.17.1",
2021-11-24 12:37:26 -07:00
"hcaptcha": "^0.1.0",
"nodemailer": "^6.7.1"
2021-11-24 11:02:52 -07:00
}
2021-11-24 10:59:39 -07:00
}