{ "name": "example", "version": "0.1.0", "private": true, "type": "module", "scripts": { "dev": "npm-run-all --parallel dev:frontend dev:backend", "dev:frontend": "next dev --turbo", "dev:backend": "convex dev", "predev": "convex dev --until-success && convex dev --once --run-sh \"node setup.mjs --once\" && convex dashboard", "build": "next build", "start": "next start", "lint": "next lint", "lint:fix": "next lint --fix", "format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache", "format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache" }, "dependencies": { "@convex-dev/auth": "^0.0.81", "@sentry/nextjs": "^10.7.0", "@t3-oss/env-nextjs": "^0.13.8", "convex": "^1.26.0", "eslint-plugin-prettier": "^5.5.4", "next": "15.2.3", "next-plausible": "^3.12.4", "react": "^19.0.0", "react-dom": "^19.0.0", "require-in-the-middle": "^7.5.2", "typescript-eslint": "^8.41.0", "zod": "^4.1.5" }, "devDependencies": { "@eslint/eslintrc": "^3", "@tailwindcss/postcss": "^4", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", "dotenv": "^16.4.7", "eslint": "^9", "eslint-config-next": "15.2.3", "npm-run-all": "^4.1.5", "prettier": "^3.5.3", "tailwindcss": "^4", "typescript": "^5" } }