Files
techtracker/package.json

54 lines
1.6 KiB
JSON

{
"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",
"@radix-ui/react-slot": "^1.2.3",
"@sentry/nextjs": "^10.7.0",
"@t3-oss/env-nextjs": "^0.13.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.26.0",
"eslint-plugin-prettier": "^5.5.4",
"lucide-react": "^0.542.0",
"next": "15.2.3",
"next-plausible": "^3.12.4",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"require-in-the-middle": "^7.5.2",
"tailwind-merge": "^3.3.1",
"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",
"tw-animate-css": "^1.3.7",
"typescript": "^5"
}
}