Files
Compass/backend/email/package.json
MartinBraquet ba3af2e5d7 Add alert loop video generation and platform stats enhancements
- Created `capture-alert.mjs` to generate alert loop video for the about page claim "Get Notified About Searches."
- Added `CountrySpread` widget for a ranked bar display of member distribution by country.
- Implemented `StatBand` component for live platform statistics on the about page.
- Introduced template rendering script (`render-search-alert.tsx`) for generating search alert email visuals.
- Updated documentation and improved workflows for media creation, video rendering, and data integration.
2026-07-23 00:28:45 +02:00

30 lines
799 B
JSON

{
"name": "react-email-starter",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc -b",
"dev": "email dev -p 3001",
"lint": "npx eslint . --max-warnings 0",
"lint-fix": "npx eslint . --fix",
"render:alert": "tsx emails/functions/render-search-alert.tsx",
"test": "jest --config jest.config.ts --passWithNoTests",
"typecheck": "npx tsc --noEmit"
},
"dependencies": {
"@react-email/components": "1.0.8",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "5.5.0",
"resend": "4.1.2"
},
"devDependencies": {
"@react-email/preview-server": "5.2.10",
"@types/html-to-text": "9.0.4",
"@types/prismjs": "1.26.5",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"react-email": "5.2.10"
}
}