Add full project structure: backend API + frontend

- Move repo to project root to include both public/ and api/
- Add .gitignore excluding node_modules and .env
- Include API routes (erase, gmail_oauth), services (mailer), and config

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
hacklab 2026-04-07 12:09:54 +02:00
parent 36b918b95d
commit 614d5af397
20 changed files with 2419 additions and 0 deletions

19
api/package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "resetea-api",
"version": "1.0.0",
"description": "RESETEA.NET — API backend para solicitudes GDPR",
"main": "app.js",
"scripts": {
"start": "node app.js",
"dev": "node --watch app.js"
},
"engines": { "node": ">=18" },
"dependencies": {
"express": "^4.19.2",
"helmet": "^7.1.0",
"express-rate-limit": "^7.3.1",
"nodemailer": "^6.9.13",
"googleapis": "^144.0.0",
"dotenv": "^16.4.5"
}
}