Files
url_tracker_tool/package.json
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

35 lines
933 B
JSON

{
"name": "redirect-intelligence-v2",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build",
"dev:api": "cd apps/api && npm run dev",
"dev:web": "cd apps/web && npm run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"db:migrate": "cd packages/database && npx prisma migrate dev",
"db:seed": "cd packages/database && npx prisma db seed",
"db:studio": "cd packages/database && npx prisma studio",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.10.0",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"turbo": "^1.13.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@prisma/client": "^5.22.0"
}
}