50e25e3ee8
Rename subdirectories for a cleaner single-repo layout: - website-monitoring-backend/ → backend/ - website-monitoring-frontend/ → frontend/ - website-monitoring-devops/ → devops/ Update all references in package.json scripts, CI workflows, docker-compose, pre-commit hooks, and documentation. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
67 lines
1.9 KiB
JSON
67 lines
1.9 KiB
JSON
{
|
|
"name": "website-monitoring",
|
|
"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",
|
|
"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/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"
|
|
}
|
|
}
|