- Updated `MailingsController` with new endpoints for name availability and next available name. - Modified existing methods to accept optional date parameters. - Introduced `TestMailingDto` for testing mailings with email addresses. - Updated `IMailingRepository` and `IMailingService` interfaces for new methods. - Enhanced `MailingRepository` and `MailingService` to support new logic for testing and sending emails. - Updated `appsettings.json` with new SendGrid settings and default unsubscribe URL. - Modified `MailingEdit` component to fetch next available name and handle test mailings. - Added search filters for start and end dates in `CompletedMailings` component. - Included `react-toastify` for notifications in `package.json` and `package-lock.json`. - Updated `App` component to include `ToastContainer` for displaying notifications.
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "Surge365.MassEmailReact.Web",
|
|
"homepage": ".",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.14.0",
|
|
"@emotion/styled": "^11.14.0",
|
|
"@fontsource/roboto": "^5.1.1",
|
|
"@hookform/resolvers": "^4.1.2",
|
|
"@monaco-editor/react": "^4.7.0",
|
|
"@mui/icons-material": "^6.4.5",
|
|
"@mui/material": "^6.4.5",
|
|
"@mui/x-charts": "^7.27.1",
|
|
"@mui/x-data-grid": "^7.27.1",
|
|
"@mui/x-date-pickers": "^7.28.0",
|
|
"admin-lte": "4.0.0-beta3",
|
|
"bootstrap": "^5.3.3",
|
|
"dayjs": "^1.11.13",
|
|
"react": "^19.0.0",
|
|
"react-bootstrap": "^2.10.9",
|
|
"react-dom": "^19.0.0",
|
|
"react-hook-form": "^7.54.2",
|
|
"react-icons": "^5.3.0",
|
|
"react-router-dom": "^7.0.1",
|
|
"react-toastify": "^11.0.5",
|
|
"yup": "^1.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.19.0",
|
|
"@types/node": "^22",
|
|
"@types/react": "^19.0.8",
|
|
"@types/react-dom": "^19.0.3",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"eslint": "^9.19.0",
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
"eslint-plugin-react-refresh": "^0.4.18",
|
|
"globals": "^15.14.0",
|
|
"typescript": "~5.7.2",
|
|
"typescript-eslint": "^8.22.0",
|
|
"vite": "^6.1.0"
|
|
},
|
|
"proxy": "http://localhost:5293"
|
|
}
|