Files
myeasycms-v2/apps/nextjs/package.json

74 lines
2.1 KiB
JSON

{
"name": "@acme/nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "pnpm with-env next build",
"clean": "git clean -xdf .next .turbo node_modules",
"dev": "pnpm with-env next dev",
"lint": "next lint",
"format": "prettier --check \"**/*.{js,cjs,mjs,ts,tsx,md,json}\"",
"start": "pnpm with-env next start",
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env.local --"
},
"dependencies": {
"@acme/api": "^0.1.0",
"@acme/db": "^0.1.0",
"@acme/stripe": "^0.1.0",
"@acme/ui": "^0.1.0",
"@clerk/nextjs": "^4.29.4",
"@dinero.js/currencies": "2.0.0-alpha.14",
"@hookform/resolvers": "^3.3.4",
"@next/mdx": "^14.1.0",
"@t3-oss/env-nextjs": "^0.7.3",
"@tanstack/react-query": "^5.17.15",
"@tanstack/react-table": "^8.11.3",
"@trpc/client": "next",
"@trpc/next": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@vercel/analytics": "^1.1.2",
"date-fns": "^3.2.0",
"dinero.js": "2.0.0-alpha.14",
"framer-motion": "^10.18.0",
"next": "^14.1.0",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-day-picker": "^8.10.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
"react-image-crop": "^11.0.4",
"react-wrap-balancer": "^1.1.0",
"recharts": "^2.10.3",
"superjson": "2.2.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@acme/eslint-config": "^0.2.0",
"@acme/prettier-config": "^0.1.0",
"@acme/tailwind-config": "^0.1.0",
"@acme/tsconfig": "^0.1.0",
"@types/mdx": "^2.0.10",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tailwindcss": "3.4.1",
"typescript": "^5.3.3"
},
"eslintConfig": {
"root": true,
"extends": [
"@acme/eslint-config/base",
"@acme/eslint-config/nextjs",
"@acme/eslint-config/react"
]
},
"prettier": "@acme/prettier-config"
}