admin / Synapse-Sonar
publicAttack Surface Simulation
Synapse-Sonar / synapse-sonar / package.json
1138 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | { "name": "synapse-sonar", "version": "0.1.0", "private": true, "description": "Synapse Sonar — Dynamic Internal Attack Surface & Dependency Mapper", "scripts": { "dev": "next dev", "build": "prisma generate && next build", "start": "next start", "lint": "next lint", "db:migrate": "prisma migrate deploy", "db:migrate:dev": "prisma migrate dev", "db:generate": "prisma generate", "db:seed": "tsx prisma/seed.ts" }, "dependencies": { "@prisma/client": "^5.22.0", "bcryptjs": "^2.4.3", "jszip": "^3.10.1", "next": "^14.2.35", "next-auth": "^4.24.10", "otplib": "^12.0.1", "qrcode": "^1.5.4", "react": "^18.3.1", "react-dom": "^18.3.1", "react-force-graph-2d": "^1.27.0", "zod": "^3.23.8" }, "devDependencies": { "@types/bcryptjs": "^2.4.6", "@types/node": "^20.16.11", "@types/qrcode": "^1.5.5", "@types/react": "^18.3.11", "@types/react-dom": "^18.3.0", "autoprefixer": "^10.4.20", "postcss": "^8.4.47", "prisma": "^5.22.0", "tailwindcss": "^3.4.13", "tsx": "^4.19.1", "typescript": "^5.6.3" } } |