├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── src └── app │ ├── api │ └── predictions │ │ ├── [id] │ │ └── route.ts │ │ └── route.ts │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── styles └── globals.css ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app/api/predictions/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/src/app/api/predictions/[id]/route.ts -------------------------------------------------------------------------------- /src/app/api/predictions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/src/app/api/predictions/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/replicate/getting-started-nextjs-typescript/HEAD/tsconfig.json --------------------------------------------------------------------------------