1
0

First commit

This commit is contained in:
2024-10-27 04:43:07 +01:00
parent 1dae13fe7e
commit 35f37491af
20 changed files with 2120 additions and 0 deletions

19
src/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "secret-sender",
"version": "1.0.0",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.21.1",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.15",
"pug": "^3.0.3"
}
}