summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-04-07 09:58:08 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-04-07 09:58:08 +0100
commite0bb1d646c00412c0f147df292720bb95adee8a2 (patch)
tree51b73f1a5284bec51922c23e2a2281086d989149
parent976891b10bb21230ba96c9939c4ec5444084dabd (diff)
Installs nodemailer
-rw-r--r--api/package-lock.json20
-rw-r--r--api/package.json7
2 files changed, 25 insertions, 2 deletions
diff --git a/api/package-lock.json b/api/package-lock.json
new file mode 100644
index 0000000..6c3a637
--- /dev/null
+++ b/api/package-lock.json
@@ -0,0 +1,20 @@
+{
+ "name": "api",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "dependencies": {
+ "nodemailer": "^6.9.13"
+ }
+ },
+ "node_modules/nodemailer": {
+ "version": "6.9.13",
+ "resolved": "https://registry.npmjs.org/nodemailer/-/nodemailer-6.9.13.tgz",
+ "integrity": "sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ }
+ }
+}
diff --git a/api/package.json b/api/package.json
index ccab745..c922489 100644
--- a/api/package.json
+++ b/api/package.json
@@ -1,4 +1,7 @@
{
"type": "commonjs",
- "private": true
-} \ No newline at end of file
+ "private": true,
+ "dependencies": {
+ "nodemailer": "^6.9.13"
+ }
+}