Files
Domain_web/package.json
Андрей Бобырев 010e053ca1 feat: monitors worker, auth register, scan polish
Add background DNS/SSL monitor checks, registration API, smoother SSE
with stage labels, improved CDN/WAF detection, light-theme UI polish,
and README roadmap updates.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-24 23:33:15 +03:00

63 lines
1.8 KiB
JSON

{
"name": "domain-scanner",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"postbuild": "bash scripts/sync-standalone-assets.sh",
"start": "next start",
"lint": "eslint",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"worker:monitors": "npx tsx scripts/monitor-worker.ts",
"seed:admin": "npx tsx scripts/seed-admin.ts",
"smoke": "bash scripts/smoke-test.sh"
},
"dependencies": {
"@prisma/client": "^6.9.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"bcryptjs": "^3.0.2",
"bullmq": "^5.56.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dns2": "^2.1.0",
"framer-motion": "^12.16.0",
"ioredis": "^5.6.1",
"lucide-react": "^0.513.0",
"next": "^15.3.3",
"next-auth": "^5.0.0-beta.28",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"recharts": "^2.15.3",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"whois": "^2.14.2",
"zod": "^3.25.51"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.3.3",
"prisma": "^6.9.0",
"tailwindcss": "^4",
"tsx": "^4.22.3",
"typescript": "^5"
}
}