379d9aa13c
- Add payments, coupons, credits, invoices management to admin dashboard - Add 7 new admin tabs: Overview, Users, Orgs, Payments, Coupons, Credits, Invoices - Replace Resend with SMTP email via nodemailer (info@dk0.dev / mail.dk0.dev) - Add professional branded email templates (alerts, welcome, invoice, credit, password reset) - Add database migration for payments, coupons, coupon_redemptions, credit_transactions, invoices tables - Add credit_balance column to organizations - Add RLS policies for all new tables - Add 4 new API routes: /api/admin/{payments,coupons,credits,invoices} - Rename project from website-monitoring to CloudLense - Update all package.json names and README Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"name": "cloudlense-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"test": "jest --passWithNoTests",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"dev:all": "concurrently \"npm run dev\" \"cd ../backend && npm run dev\""
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^4.1.2",
|
|
"@radix-ui/react-checkbox": "^1.2.2",
|
|
"@radix-ui/react-label": "^2.1.2",
|
|
"@radix-ui/react-progress": "^1.1.3",
|
|
"@radix-ui/react-slot": "^1.1.2",
|
|
"@radix-ui/react-tabs": "^1.1.3",
|
|
"@shadcn/ui": "^0.0.4",
|
|
"@supabase/auth-helpers-nextjs": "^0.10.0",
|
|
"@supabase/ssr": "^0.5.2",
|
|
"@supabase/supabase-js": "^2.50.0",
|
|
"autoprefixer": "^10.4.20",
|
|
"chrome-launcher": "^1.2.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"dotenv": "^16.5.0",
|
|
"framer-motion": "^12.4.10",
|
|
"jsdom": "^26.0.0",
|
|
"lighthouse": "^12.6.1",
|
|
"lucide-react": "^0.477.0",
|
|
"next": "^15.2.4",
|
|
"nodemailer": "^8.0.1",
|
|
"postcss": "^8.5.3",
|
|
"puppeteer": "^24.7.0",
|
|
"react": "^19.0.0",
|
|
"react-chartjs-2": "^5.3.0",
|
|
"react-circular-progressbar": "^2.2.0",
|
|
"react-dom": "^19.0.0",
|
|
"react-hook-form": "^7.54.2",
|
|
"react-intersection-observer": "^9.16.0",
|
|
"recharts": "^2.15.1",
|
|
"supabase": "^2.15.8",
|
|
"tailwind-merge": "^3.0.2",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"zod": "^3.24.2"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.0.1",
|
|
"@types/node": "^20",
|
|
"@types/nodemailer": "^7.0.11",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"concurrently": "^9.1.2",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.2.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"tailwindcss": "^4.0.9",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5"
|
|
}
|
|
}
|