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:
parent
36b918b95d
commit
614d5af397
20 changed files with 2419 additions and 0 deletions
19
api/package.json
Normal file
19
api/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue