Some checks failed
Build and Push Docker Images / docker (push) Has been cancelled
- Add beautiful HTML email templates for receipts, admin notifications, and contact forms - Implement SMTP email service with Nodemailer and Handlebars templating - Add carbon equivalency calculations with EPA/DEFRA/IMO 2024 conversion factors - Add portfolio color palette system for project visualization - Integrate Wren API portfolio fetching in webhook handler - Add light mode enforcement for email client compatibility - Include Puffin logo from MinIO S3 in all templates - Add test email endpoint for template validation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
31 lines
699 B
JSON
31 lines
699 B
JSON
{
|
|
"name": "puffin-app-server",
|
|
"version": "1.0.0",
|
|
"description": "Backend server for Puffin App - Stripe checkout and carbon offset processing",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "node --watch index.js",
|
|
"init-db": "node config/database.js"
|
|
},
|
|
"keywords": [
|
|
"stripe",
|
|
"carbon-offset",
|
|
"express"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"axios": "^1.6.7",
|
|
"better-sqlite3": "^11.8.1",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^4.21.2",
|
|
"express-rate-limit": "^8.2.0",
|
|
"handlebars": "^4.7.8",
|
|
"nodemailer": "^7.0.10",
|
|
"stripe": "^17.5.0"
|
|
}
|
|
}
|