package.json 979 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "@briven/web",
  3. "version": "0.0.0",
  4. "private": true,
  5. "description": "briven.tech — marketing + dashboard",
  6. "type": "module",
  7. "scripts": {
  8. "dev": "next dev -p 3000",
  9. "build": "next build",
  10. "start": "next start -p 3000",
  11. "lint": "eslint . --max-warnings 0",
  12. "typecheck": "tsc --noEmit"
  13. },
  14. "dependencies": {
  15. "@briven/auth": "workspace:*",
  16. "@briven/config": "workspace:*",
  17. "@briven/shared": "workspace:*",
  18. "@briven/ui": "workspace:*",
  19. "clsx": "^2.1.1",
  20. "geist": "^1.7.0",
  21. "ip3country": "^5.0.0",
  22. "motion": "^12.38.0",
  23. "next": "^16.2.9",
  24. "react": "^19.2.5",
  25. "react-dom": "^19.2.5",
  26. "react-icons": "^5.6.0",
  27. "tailwind-merge": "^3.5.0"
  28. },
  29. "devDependencies": {
  30. "@tailwindcss/postcss": "^4.2.4",
  31. "@types/node": "^25.6.0",
  32. "@types/react": "^19.2.14",
  33. "@types/react-dom": "^19.2.3",
  34. "postcss": "^8.5.12",
  35. "tailwindcss": "^4.2.4",
  36. "typescript": "^6.0.3"
  37. }
  38. }