diff --git a/examples/i18n/.eslintrc.js b/examples/i18n/.eslintrc.js new file mode 100644 index 0000000..6a6c553 --- /dev/null +++ b/examples/i18n/.eslintrc.js @@ -0,0 +1,4 @@ +module.exports = { + root: true, + extends: ["ts", "next"], +}; diff --git a/examples/i18n/.gitignore b/examples/i18n/.gitignore new file mode 100644 index 0000000..c8f9551 --- /dev/null +++ b/examples/i18n/.gitignore @@ -0,0 +1,38 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# local env files +.env*.local + +# vercel +.vercel + +# typescript +*.tsbuildinfo +next-env.d.ts + +/middleware.ts diff --git a/examples/i18n/.vscode/settings.json b/examples/i18n/.vscode/settings.json new file mode 100644 index 0000000..b0ef59c --- /dev/null +++ b/examples/i18n/.vscode/settings.json @@ -0,0 +1,4 @@ +{ + "typescript.tsdk": "../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true +} \ No newline at end of file diff --git a/examples/i18n/README.md b/examples/i18n/README.md new file mode 100644 index 0000000..4fffb4c --- /dev/null +++ b/examples/i18n/README.md @@ -0,0 +1,5 @@ +# simple i18n setup for next.js powered by `next-app-middleware` + +This example uses next-app-middleware dynamic forwards to inject a static language parameter into every incoming request based on the incoming cookies or accept-language header. + +The page at `/app/[locale]/page.tsx` is externally reachable at `/` while `/:locale/` is unreachable. This happens because the `/app/forward.dynamic.ts` file has a named `locale` export, indicating that an internal path forward is happening. diff --git a/examples/i18n/app/[locale]/globals.css b/examples/i18n/app/[locale]/globals.css new file mode 100644 index 0000000..d4f491e --- /dev/null +++ b/examples/i18n/app/[locale]/globals.css @@ -0,0 +1,107 @@ +:root { + --max-width: 1100px; + --border-radius: 12px; + --font-mono: ui-monospace, Menlo, Monaco, 'Cascadia Mono', 'Segoe UI Mono', + 'Roboto Mono', 'Oxygen Mono', 'Ubuntu Monospace', 'Source Code Pro', + 'Fira Mono', 'Droid Sans Mono', 'Courier New', monospace; + + --foreground-rgb: 0, 0, 0; + --background-start-rgb: 214, 219, 220; + --background-end-rgb: 255, 255, 255; + + --primary-glow: conic-gradient( + from 180deg at 50% 50%, + #16abff33 0deg, + #0885ff33 55deg, + #54d6ff33 120deg, + #0071ff33 160deg, + transparent 360deg + ); + --secondary-glow: radial-gradient( + rgba(255, 255, 255, 1), + rgba(255, 255, 255, 0) + ); + + --tile-start-rgb: 239, 245, 249; + --tile-end-rgb: 228, 232, 233; + --tile-border: conic-gradient( + #00000080, + #00000040, + #00000030, + #00000020, + #00000010, + #00000010, + #00000080 + ); + + --callout-rgb: 238, 240, 241; + --callout-border-rgb: 172, 175, 176; + --card-rgb: 180, 185, 188; + --card-border-rgb: 131, 134, 135; +} + +@media (prefers-color-scheme: dark) { + :root { + --foreground-rgb: 255, 255, 255; + --background-start-rgb: 0, 0, 0; + --background-end-rgb: 0, 0, 0; + + --primary-glow: radial-gradient(rgba(1, 65, 255, 0.4), rgba(1, 65, 255, 0)); + --secondary-glow: linear-gradient( + to bottom right, + rgba(1, 65, 255, 0), + rgba(1, 65, 255, 0), + rgba(1, 65, 255, 0.3) + ); + + --tile-start-rgb: 2, 13, 46; + --tile-end-rgb: 2, 5, 19; + --tile-border: conic-gradient( + #ffffff80, + #ffffff40, + #ffffff30, + #ffffff20, + #ffffff10, + #ffffff10, + #ffffff80 + ); + + --callout-rgb: 20, 20, 20; + --callout-border-rgb: 108, 108, 108; + --card-rgb: 100, 100, 100; + --card-border-rgb: 200, 200, 200; + } +} + +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +html, +body { + max-width: 100vw; + overflow-x: hidden; +} + +body { + color: rgb(var(--foreground-rgb)); + background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); +} + +a { + color: inherit; + text-decoration: none; +} + +@media (prefers-color-scheme: dark) { + html { + color-scheme: dark; + } +} diff --git a/examples/i18n/app/[locale]/head.tsx b/examples/i18n/app/[locale]/head.tsx new file mode 100644 index 0000000..5ad797f --- /dev/null +++ b/examples/i18n/app/[locale]/head.tsx @@ -0,0 +1,10 @@ +export default function Head() { + return ( + <> + Create Next App + + + + + ) +} diff --git a/examples/i18n/app/[locale]/layout.tsx b/examples/i18n/app/[locale]/layout.tsx new file mode 100644 index 0000000..e2e2905 --- /dev/null +++ b/examples/i18n/app/[locale]/layout.tsx @@ -0,0 +1,22 @@ +import "./globals.css"; + +export default function RootLayout({ + children, + params: { locale }, +}: { + children: React.ReactNode; + params: { + locale: string; + }; +}) { + return ( + + {/* + will contain the components returned by the nearest parent + head.tsx. Find out more at https://beta.nextjs.org/docs/api-reference/file-conventions/head + */} + + {children} + + ); +} diff --git a/examples/i18n/app/[locale]/page.module.css b/examples/i18n/app/[locale]/page.module.css new file mode 100644 index 0000000..4732b55 --- /dev/null +++ b/examples/i18n/app/[locale]/page.module.css @@ -0,0 +1,271 @@ +.main { + display: flex; + flex-direction: column; + justify-content: space-between; + align-items: center; + padding: 6rem; + min-height: 100vh; +} + +.description { + display: inherit; + justify-content: inherit; + align-items: inherit; + font-size: 0.85rem; + max-width: var(--max-width); + width: 100%; + z-index: 2; + font-family: var(--font-mono); +} + +.description a { + display: flex; + align-items: center; + justify-content: center; + gap: 0.5rem; +} + +.description p { + position: relative; + margin: 0; + padding: 1rem; + background-color: rgba(var(--callout-rgb), 0.5); + border: 1px solid rgba(var(--callout-border-rgb), 0.3); + border-radius: var(--border-radius); +} + +.code { + font-weight: 700; + font-family: var(--font-mono); +} + +.grid { + display: grid; + grid-template-columns: repeat(3, minmax(33%, auto)); + width: var(--max-width); + max-width: 100%; +} + +.card { + padding: 1rem 1.2rem; + border-radius: var(--border-radius); + background: rgba(var(--card-rgb), 0); + border: 1px solid rgba(var(--card-border-rgb), 0); + transition: background 200ms, border 200ms; +} + +.card span { + display: inline-block; + transition: transform 200ms; +} + +.card h2 { + font-weight: 600; + margin-bottom: 0.7rem; +} + +.card p { + margin: 0; + opacity: 0.6; + font-size: 0.9rem; + line-height: 1.5; + max-width: 34ch; +} + +.center { + display: flex; + justify-content: center; + align-items: center; + position: relative; + padding: 4rem 0; +} + +.center::before { + background: var(--secondary-glow); + border-radius: 50%; + width: 480px; + height: 360px; + margin-left: -400px; +} + +.center::after { + background: var(--primary-glow); + width: 240px; + height: 180px; + z-index: -1; +} + +.center::before, +.center::after { + content: ''; + left: 50%; + position: absolute; + filter: blur(45px); + transform: translateZ(0); +} + +.logo, +.thirteen { + position: relative; +} + +.thirteen { + display: flex; + justify-content: center; + align-items: center; + width: 75px; + height: 75px; + padding: 25px 10px; + margin-left: 16px; + transform: translateZ(0); + border-radius: var(--border-radius); + overflow: hidden; + box-shadow: 0px 2px 8px -1px #0000001a; +} + +.thirteen::before, +.thirteen::after { + content: ''; + position: absolute; + z-index: -1; +} + +/* Conic Gradient Animation */ +.thirteen::before { + animation: 6s rotate linear infinite; + width: 200%; + height: 200%; + background: var(--tile-border); +} + +/* Inner Square */ +.thirteen::after { + inset: 0; + padding: 1px; + border-radius: var(--border-radius); + background: linear-gradient( + to bottom right, + rgba(var(--tile-start-rgb), 1), + rgba(var(--tile-end-rgb), 1) + ); + background-clip: content-box; +} + +/* Enable hover only on non-touch devices */ +@media (hover: hover) and (pointer: fine) { + .card:hover { + background: rgba(var(--card-rgb), 0.1); + border: 1px solid rgba(var(--card-border-rgb), 0.15); + } + + .card:hover span { + transform: translateX(4px); + } +} + +@media (prefers-reduced-motion) { + .thirteen::before { + animation: none; + } + + .card:hover span { + transform: none; + } +} + +/* Mobile and Tablet */ +@media (max-width: 1023px) { + .content { + padding: 4rem; + } + + .grid { + grid-template-columns: 1fr; + margin-bottom: 120px; + max-width: 320px; + text-align: center; + } + + .card { + padding: 1rem 2.5rem; + } + + .card h2 { + margin-bottom: 0.5rem; + } + + .center { + padding: 8rem 0 6rem; + } + + .center::before { + transform: none; + height: 300px; + } + + .description { + font-size: 0.8rem; + } + + .description a { + padding: 1rem; + } + + .description p, + .description div { + display: flex; + justify-content: center; + position: fixed; + width: 100%; + } + + .description p { + align-items: center; + inset: 0 0 auto; + padding: 2rem 1rem 1.4rem; + border-radius: 0; + border: none; + border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25); + background: linear-gradient( + to bottom, + rgba(var(--background-start-rgb), 1), + rgba(var(--callout-rgb), 0.5) + ); + background-clip: padding-box; + backdrop-filter: blur(24px); + } + + .description div { + align-items: flex-end; + pointer-events: none; + inset: auto 0 0; + padding: 2rem; + height: 200px; + background: linear-gradient( + to bottom, + transparent 0%, + rgb(var(--background-end-rgb)) 40% + ); + z-index: 1; + } +} + +@media (prefers-color-scheme: dark) { + .vercelLogo { + filter: invert(1); + } + + .logo, + .thirteen img { + filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70); + } +} + +@keyframes rotate { + from { + transform: rotate(360deg); + } + to { + transform: rotate(0deg); + } +} diff --git a/examples/i18n/app/[locale]/page.tsx b/examples/i18n/app/[locale]/page.tsx new file mode 100644 index 0000000..47fcc95 --- /dev/null +++ b/examples/i18n/app/[locale]/page.tsx @@ -0,0 +1,91 @@ +import Image from 'next/image' +import { Inter } from '@next/font/google' +import styles from './page.module.css' + +const inter = Inter({ subsets: ['latin'] }) + +export default function Home() { + return ( +
+
+

+ Get started by editing  + app/page.tsx +

+
+ + By{' '} + Vercel Logo + +
+
+ +
+ Next.js Logo +
+ 13 +
+
+ +
+ +

+ Docs -> +

+

+ Find in-depth information about Next.js features and API. +

+
+ + +

+ Templates -> +

+

Explore the Next.js 13 playground.

+
+ + +

+ Deploy -> +

+

+ Instantly deploy your Next.js site to a shareable URL with Vercel. +

+
+
+
+ ) +} diff --git a/examples/i18n/app/forward.dynamic.ts b/examples/i18n/app/forward.dynamic.ts new file mode 100644 index 0000000..820d237 --- /dev/null +++ b/examples/i18n/app/forward.dynamic.ts @@ -0,0 +1,37 @@ +import { DynamicForwarder } from "next-app-middleware/runtime"; + +const available = ["en", "de"]; + +const validateCookie = (value?: string) => { + if (!value) return; + if (available.includes(value)) return value; + return "en"; +}; + +const matchAcceptLanguageHeader = (header: string | null) => { + if (!header) return "en"; + const values = header.split(","); + const match = { + score: 0, + laguage: "en", + }; + for (const value of values) { + const [lang, score = "1"] = value.trim().split(";q="); + const parsedScore = parseFloat(score); + if ( + (lang === "*" || available.includes(lang)) && + parsedScore > match.score + ) { + match.score = parsedScore; + match.laguage = lang === "*" ? "en" : lang; + } + } + return match.laguage; +}; + +export const locale: DynamicForwarder = (req) => { + return ( + validateCookie(req.cookies.get("locale")?.value) || + matchAcceptLanguageHeader(req.headers.get("accept-language")) + ); +}; diff --git a/examples/i18n/next.config.js b/examples/i18n/next.config.js new file mode 100644 index 0000000..c09eb30 --- /dev/null +++ b/examples/i18n/next.config.js @@ -0,0 +1,10 @@ +const { withMiddleware } = require("next-app-middleware"); + +/** @type {import('next').NextConfig} */ +const nextConfig = { + experimental: { + appDir: true, + }, +}; + +module.exports = withMiddleware(nextConfig); diff --git a/examples/i18n/package.json b/examples/i18n/package.json new file mode 100644 index 0000000..9b4d3bb --- /dev/null +++ b/examples/i18n/package.json @@ -0,0 +1,27 @@ +{ + "name": "i18n", + "version": "0.1.0", + "private": true, + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" + }, + "dependencies": { + "@next/font": "13.1.6", + "@types/node": "^17.0.45", + "@types/react": "18.0.26", + "@types/react-dom": "18.0.9", + "eslint": "8.34.0", + "eslint-config-next": "13.1.6", + "next": "13.1.6", + "react": "18.2.0", + "react-dom": "18.2.0", + "typescript": "4.9.5" + }, + "devDependencies": { + "eslint-config-ts": "workspace:^0.0.0", + "next-app-middleware": "workspace:^0.0.0" + } +} diff --git a/examples/i18n/pages/api/hello.ts b/examples/i18n/pages/api/hello.ts new file mode 100644 index 0000000..f8bcc7e --- /dev/null +++ b/examples/i18n/pages/api/hello.ts @@ -0,0 +1,13 @@ +// Next.js API route support: https://nextjs.org/docs/api-routes/introduction +import type { NextApiRequest, NextApiResponse } from 'next' + +type Data = { + name: string +} + +export default function handler( + req: NextApiRequest, + res: NextApiResponse +) { + res.status(200).json({ name: 'John Doe' }) +} diff --git a/examples/i18n/public/favicon.ico b/examples/i18n/public/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/examples/i18n/public/favicon.ico differ diff --git a/examples/i18n/public/next.svg b/examples/i18n/public/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/examples/i18n/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/examples/i18n/public/thirteen.svg b/examples/i18n/public/thirteen.svg new file mode 100644 index 0000000..8977c1b --- /dev/null +++ b/examples/i18n/public/thirteen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/examples/i18n/public/vercel.svg b/examples/i18n/public/vercel.svg new file mode 100644 index 0000000..d2f8422 --- /dev/null +++ b/examples/i18n/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/examples/i18n/tsconfig.json b/examples/i18n/tsconfig.json new file mode 100644 index 0000000..96e2abb --- /dev/null +++ b/examples/i18n/tsconfig.json @@ -0,0 +1,29 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "baseUrl": ".", + "paths": { + "@/*": ["./*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "next.config.js"], + "exclude": ["node_modules"] +} diff --git a/packages/next-app-middleware/README.md b/packages/next-app-middleware/README.md index b1a406b..a8d2755 100644 --- a/packages/next-app-middleware/README.md +++ b/packages/next-app-middleware/README.md @@ -60,6 +60,7 @@ export default middleare; ```ts // app/(authenticated)/middleware.js +// this will only run on requests to pages in the (authenticated) segment import isAuthenticated from "@/lib/isAuthenticated"; const middleware = async (req) => { @@ -72,6 +73,7 @@ const middleware = async (req) => { export default middleware; // app/(unauthenticated)/middleware.js +// this will only run on requests to pages in the (unauthenticated) segment import isAuthenticated from "@/lib/isAuthenticated"; const middleware = async (req) => { @@ -84,7 +86,9 @@ const middleware = async (req) => { export default middleware; ``` -In this setup the middleware will only run if the request path is matching a page in the `(authenticated)` group segment. +## examples + +- [i18n](../../examples/i18n/) - simple example that shows how to add i18n to a next project using this extension ## setup diff --git a/packages/next-app-middleware/package.json b/packages/next-app-middleware/package.json index d92aa93..017f249 100644 --- a/packages/next-app-middleware/package.json +++ b/packages/next-app-middleware/package.json @@ -21,6 +21,7 @@ "@swc/cli": "^0.1.57", "@swc/core": "^1.3.21", "@whop-sdk/turbo-module": "0.0.4-canary.1", + "chokidar": "^3.5.3", "concurrently": "^7.6.0", "next": "13.1.6", "tsconfig": "workspace:0.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0985078..006a614 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -66,6 +66,35 @@ importers: eslint-config-js: link:../../packages/eslint-config-js next-app-middleware: link:../../packages/next-app-middleware + examples/i18n: + specifiers: + '@next/font': 13.1.6 + '@types/node': ^17.0.45 + '@types/react': 18.0.26 + '@types/react-dom': 18.0.9 + eslint: 8.34.0 + eslint-config-next: 13.1.6 + eslint-config-ts: workspace:^0.0.0 + next: 13.1.6 + next-app-middleware: workspace:^0.0.0 + react: 18.2.0 + react-dom: 18.2.0 + typescript: 4.9.5 + dependencies: + '@next/font': 13.1.6 + '@types/node': 17.0.45 + '@types/react': 18.0.26 + '@types/react-dom': 18.0.9 + eslint: 8.34.0 + eslint-config-next: 13.1.6_7kw3g6rralp5ps6mg3uyzz6azm + next: 13.1.6_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + typescript: 4.9.5 + devDependencies: + eslint-config-ts: link:../../packages/eslint-config-ts + next-app-middleware: link:../../packages/next-app-middleware + packages/codegen: specifiers: '@next-app-middleware/runtime': workspace:0.0.0 @@ -134,6 +163,7 @@ importers: '@swc/cli': ^0.1.57 '@swc/core': ^1.3.21 '@whop-sdk/turbo-module': 0.0.4-canary.1 + chokidar: ^3.5.3 concurrently: ^7.6.0 next: 13.1.6 tsconfig: workspace:0.0.0 @@ -142,9 +172,10 @@ importers: '@next-app-middleware/codegen': link:../codegen '@next-app-middleware/runtime': link:../runtime devDependencies: - '@swc/cli': 0.1.57_@swc+core@1.3.21 + '@swc/cli': 0.1.57_mmzt2lum23erosdhjy7mml53di '@swc/core': 1.3.21 '@whop-sdk/turbo-module': 0.0.4-canary.1 + chokidar: 3.5.3 concurrently: 7.6.0 next: 13.1.6_biqbaboplfbrettd7655fr4n2y tsconfig: link:../tsconfig @@ -262,7 +293,6 @@ packages: strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color - dev: true /@humanwhocodes/config-array/0.11.8: resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} @@ -439,7 +469,7 @@ packages: /@rushstack/eslint-patch/1.2.0: resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} - /@swc/cli/0.1.57_@swc+core@1.3.21: + /@swc/cli/0.1.57_mmzt2lum23erosdhjy7mml53di: resolution: {integrity: sha512-HxM8TqYHhAg+zp7+RdTU69bnkl4MWdt1ygyp6BDIPjTiaJVH6Dizn2ezbgDS8mnFZI1FyhKvxU/bbaUs8XhzQg==} engines: {node: '>= 12.13'} hasBin: true @@ -451,6 +481,7 @@ packages: optional: true dependencies: '@swc/core': 1.3.21 + chokidar: 3.5.3 commander: 7.2.0 fast-glob: 3.2.12 slash: 3.0.0 @@ -585,7 +616,6 @@ packages: /@types/node/17.0.45: resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - dev: true /@types/prettier/2.7.1: resolution: {integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==} @@ -645,6 +675,26 @@ packages: - supports-color dev: true + /@typescript-eslint/parser/5.51.0_7kw3g6rralp5ps6mg3uyzz6azm: + resolution: {integrity: sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.51.0 + '@typescript-eslint/types': 5.51.0 + '@typescript-eslint/typescript-estree': 5.51.0_typescript@4.9.5 + debug: 4.3.4 + eslint: 8.34.0 + typescript: 4.9.5 + transitivePeerDependencies: + - supports-color + dev: false + /@typescript-eslint/parser/5.51.0_jofidmxrjzhj7l6vknpw5ecvfe: resolution: {integrity: sha512-fEV0R9gGmfpDeRzJXn+fGQKcl0inIeYobmmUWijZh9zA7bxJ8clPhV9up2ZQzATxAiFAECqPQyMDB4o4B81AaA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1454,6 +1504,31 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} + /eslint-config-next/13.1.6_7kw3g6rralp5ps6mg3uyzz6azm: + resolution: {integrity: sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw==} + peerDependencies: + eslint: ^7.23.0 || ^8.0.0 + typescript: '>=3.3.1' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@next/eslint-plugin-next': 13.1.6 + '@rushstack/eslint-patch': 1.2.0 + '@typescript-eslint/parser': 5.51.0_7kw3g6rralp5ps6mg3uyzz6azm + eslint: 8.34.0 + eslint-import-resolver-node: 0.3.6 + eslint-import-resolver-typescript: 3.5.2_w7dy265x2bmlgtc6kmsfumkjde + eslint-plugin-import: 2.26.0_eslint@8.34.0 + eslint-plugin-jsx-a11y: 6.6.1_eslint@8.34.0 + eslint-plugin-react: 7.31.8_eslint@8.34.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.34.0 + typescript: 4.9.5 + transitivePeerDependencies: + - eslint-import-resolver-webpack + - supports-color + dev: false + /eslint-config-next/13.1.6_req3y6wneysbxs6mlxvssjag2i: resolution: {integrity: sha512-0cg7h5wztg/SoLAlxljZ0ZPUQ7i6QKqRiP4M2+MgTZtxWwNKb2JSwNc18nJ6/kXBI6xYvPraTbQSIhAuVw6czw==} peerDependencies: @@ -1570,6 +1645,26 @@ packages: - supports-color dev: true + /eslint-import-resolver-typescript/3.5.2_w7dy265x2bmlgtc6kmsfumkjde: + resolution: {integrity: sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + dependencies: + debug: 4.3.4 + enhanced-resolve: 5.12.0 + eslint: 8.34.0 + eslint-plugin-import: 2.26.0_eslint@8.34.0 + get-tsconfig: 4.2.0 + globby: 13.1.2 + is-core-module: 2.11.0 + is-glob: 4.0.3 + synckit: 0.8.4 + transitivePeerDependencies: + - supports-color + dev: false + /eslint-module-utils/2.7.4_dc7heojkjdjw5ttc65wer4jauy: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} @@ -1598,6 +1693,34 @@ packages: - supports-color dev: false + /eslint-module-utils/2.7.4_dxrlgjdnwtgm3wferu2lqgbvv4: + resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + debug: 3.2.7 + eslint: 8.34.0 + eslint-import-resolver-node: 0.3.6 + transitivePeerDependencies: + - supports-color + dev: false + /eslint-module-utils/2.7.4_uplb3bqnui63takc5j27khdnpm: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} @@ -1686,6 +1809,36 @@ packages: - supports-color dev: false + /eslint-plugin-import/2.26.0_eslint@8.34.0: + resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.34.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.4_dxrlgjdnwtgm3wferu2lqgbvv4 + has: 1.0.3 + is-core-module: 2.11.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: false + /eslint-plugin-jsx-a11y/6.6.1_eslint@8.29.0: resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} engines: {node: '>=4.0'} @@ -1730,6 +1883,28 @@ packages: semver: 6.3.0 dev: false + /eslint-plugin-jsx-a11y/6.6.1_eslint@8.34.0: + resolution: {integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==} + engines: {node: '>=4.0'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + '@babel/runtime': 7.20.6 + aria-query: 4.2.2 + array-includes: 3.1.6 + ast-types-flow: 0.0.7 + axe-core: 4.5.2 + axobject-query: 2.2.0 + damerau-levenshtein: 1.0.8 + emoji-regex: 9.2.2 + eslint: 8.34.0 + has: 1.0.3 + jsx-ast-utils: 3.3.3 + language-tags: 1.0.6 + minimatch: 3.1.2 + semver: 6.3.0 + dev: false + /eslint-plugin-react-hooks/4.6.0_eslint@8.29.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} @@ -1748,6 +1923,15 @@ packages: eslint: 8.30.0 dev: false + /eslint-plugin-react-hooks/4.6.0_eslint@8.34.0: + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 + dependencies: + eslint: 8.34.0 + dev: false + /eslint-plugin-react/7.31.8_eslint@8.29.0: resolution: {integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==} engines: {node: '>=4'} @@ -1794,6 +1978,29 @@ packages: string.prototype.matchall: 4.0.8 dev: false + /eslint-plugin-react/7.31.8_eslint@8.34.0: + resolution: {integrity: sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==} + engines: {node: '>=4'} + peerDependencies: + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 + dependencies: + array-includes: 3.1.6 + array.prototype.flatmap: 1.3.1 + doctrine: 2.1.0 + eslint: 8.34.0 + estraverse: 5.3.0 + jsx-ast-utils: 3.3.3 + minimatch: 3.1.2 + object.entries: 1.1.6 + object.fromentries: 2.0.6 + object.hasown: 1.1.2 + object.values: 1.1.6 + prop-types: 15.8.1 + resolve: 2.0.0-next.4 + semver: 6.3.0 + string.prototype.matchall: 4.0.8 + dev: false + /eslint-plugin-turbo/0.0.7_eslint@7.32.0: resolution: {integrity: sha512-iajOH8eD4jha3duztGVBD1BEmvNrQBaA/y3HFHf91vMDRYRwH7BpHSDFtxydDpk5ghlhRxG299SFxz7D6z4MBQ==} peerDependencies: @@ -1859,7 +2066,6 @@ packages: dependencies: eslint: 8.34.0 eslint-visitor-keys: 2.1.0 - dev: true /eslint-visitor-keys/1.3.0: resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} @@ -2062,7 +2268,6 @@ packages: text-table: 0.2.0 transitivePeerDependencies: - supports-color - dev: true /espree/7.3.1: resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}