{
  "name": "@apps/{{appName}}",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "scripts": {
    {{#if_eq framework "vite-react"}}
    "dev": "vite",
    "build": "tsc && vite build",
    "preview": "vite preview",
    {{else}}
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    {{/if_eq}}
    "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    {{#if_eq framework "vite-react"}}
    "react": "^18.2.0",
    "react-dom": "^18.2.0"{{#if includeRouter}},
    "react-router-dom": "^6.15.0"{{/if}}
    {{else}}
    "next": "14.0.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0"
    {{/if_eq}}
  },
  "devDependencies": {
    {{#if_eq framework "vite-react"}}
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "@vitejs/plugin-react": "^4.0.0",
    "eslint": "^8.45.0",
    "eslint-plugin-react-hooks": "^4.6.0",
    "eslint-plugin-react-refresh": "^0.4.3",
    "typescript": "^5.0.0",
    "vite": "^4.4.0"
    {{else}}
    "@types/node": "^20.0.0",
    "@types/react": "^18.2.0",
    "@types/react-dom": "^18.2.0",
    "eslint": "^8.0.0",
    "eslint-config-next": "14.0.0",
    "typescript": "^5.0.0"
    {{/if_eq}}{{#if includeTailwind}},
    "tailwindcss": "^3.3.0",
    "postcss": "^8.4.31",
    "autoprefixer": "^10.4.16"{{/if}}
  }
}