{ "name": "supporthub-web", "version": "0.1.0", "private": true, "engines": { "node": ">=22 <23" }, "scripts": { "dev": "next dev -p 3000", "build": "next build", "build:dev": "npx dotenv-cli -o -e .env.development -- next build", "build:test": "npx dotenv-cli -o -e .env.test -- next build", "build:prod": "npx dotenv-cli -o -e .env.production -- next build", "start": "next start -p 3000", "lint": "next lint", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "test:e2e": "playwright test" }, "dependencies": { "next": "^14.2.5", "react": "^18.3.1", "react-dom": "^18.3.1", "@tanstack/react-query": "^5.51.15", "clsx": "^2.1.1", "tailwind-merge": "^2.4.0", "lucide-react": "^0.417.0", "axios": "^1.7.2" }, "devDependencies": { "@types/node": "^20.14.12", "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "dotenv-cli": "^7.4.2", "typescript": "^5.5.4", "tailwindcss": "^3.4.7", "postcss": "^8.4.40", "autoprefixer": "^10.4.20", "eslint": "^8.57.0", "eslint-config-next": "^14.2.5", "vitest": "^2.0.4", "@playwright/test": "^1.45.3" } }