- Replace Resend email service with nodemailer via local postfix relay - Remove code field from POST /v1/signup/free response - Send 6-digit verification code via email only (noreply@docfast.dev) - Add extra_hosts for Docker-to-host SMTP relay - Fire-and-forget email sending to avoid blocking API response
31 lines
743 B
JSON
31 lines
743 B
JSON
{
|
|
"name": "docfast-api",
|
|
"version": "0.1.0",
|
|
"description": "Markdown/HTML to PDF API with built-in invoice templates",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.0",
|
|
"express-rate-limit": "^7.5.0",
|
|
"helmet": "^8.0.0",
|
|
"marked": "^15.0.0",
|
|
"nanoid": "^5.0.0",
|
|
"nodemailer": "^8.0.1",
|
|
"puppeteer": "^24.0.0",
|
|
"stripe": "^20.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"@types/nodemailer": "^7.0.9",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.0.0"
|
|
},
|
|
"type": "module"
|
|
}
|