Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

27 lines
604 B
JSON

{
"name": "@redirect-intelligence/database",
"version": "2.0.0",
"private": true,
"scripts": {
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.ts",
"db:reset": "prisma migrate reset"
},
"dependencies": {
"@prisma/client": "^5.22.0",
"argon2": "^0.31.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"prisma": "^5.7.1",
"tsx": "^4.6.2",
"typescript": "^5.3.0"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}