├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── README.md ├── index.ts ├── package.json ├── pnpm-lock.yaml ├── public └── r │ ├── eslint-next-ts-tailwind.json │ └── next-eslint-ts-shadcn │ └── eslint.json ├── registry.json ├── templates ├── next-eslint-ts-shadcn │ ├── extras │ │ ├── auth0 │ │ │ ├── AUTH0.md │ │ │ └── src │ │ │ │ └── auth │ │ │ │ └── provider.tsx │ │ ├── clerk │ │ │ ├── CLERK.md │ │ │ └── src │ │ │ │ └── auth │ │ │ │ └── provider.tsx │ │ ├── kinde │ │ │ ├── KINDE.md │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── api │ │ │ │ └── auth │ │ │ │ └── [kindeAuth] │ │ │ │ └── route.ts │ │ ├── libsql │ │ │ ├── LIBSQL.md │ │ │ ├── drizzle.config.ts │ │ │ └── src │ │ │ │ └── db │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ ├── mercadopago │ │ │ ├── MERCADOPAGO.md │ │ │ └── src │ │ │ │ └── payment │ │ │ │ └── api.ts │ │ └── supabase │ │ │ ├── SUPABASE.md │ │ │ └── src │ │ │ └── db │ │ │ ├── api │ │ │ ├── client.ts │ │ │ └── server.ts │ │ │ └── types.ts │ └── project │ │ ├── %%.gitignore │ │ ├── .editorconfig │ │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ │ ├── README.md │ │ ├── components.json │ │ ├── eslint.config.mjs │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.mjs │ │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ │ ├── src │ │ ├── app │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ └── ui │ │ │ │ └── button.tsx │ │ └── lib │ │ │ └── utils.ts │ │ └── tsconfig.json ├── next-eslint-ts-tw │ ├── extras │ │ ├── auth0 │ │ │ ├── AUTH0.md │ │ │ └── src │ │ │ │ └── auth │ │ │ │ └── provider.tsx │ │ ├── clerk │ │ │ ├── CLERK.md │ │ │ └── src │ │ │ │ └── auth │ │ │ │ └── provider.tsx │ │ ├── kinde │ │ │ ├── KINDE.md │ │ │ └── src │ │ │ │ └── app │ │ │ │ └── api │ │ │ │ └── auth │ │ │ │ └── [kindeAuth] │ │ │ │ └── route.ts │ │ ├── libsql │ │ │ ├── LIBSQL.md │ │ │ ├── drizzle.config.ts │ │ │ └── src │ │ │ │ └── db │ │ │ │ ├── index.ts │ │ │ │ └── schema.ts │ │ ├── mercadopago │ │ │ ├── MERCADOPAGO.md │ │ │ └── src │ │ │ │ └── payment │ │ │ │ └── api.ts │ │ └── supabase │ │ │ ├── SUPABASE.md │ │ │ └── src │ │ │ └── db │ │ │ ├── api │ │ │ ├── client.ts │ │ │ └── server.ts │ │ │ └── types.ts │ └── project │ │ ├── %%.gitignore │ │ ├── .editorconfig │ │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ │ ├── README.md │ │ ├── eslint.config.mjs │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.mjs │ │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ │ ├── src │ │ └── app │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ └── tsconfig.json └── react-eslint-ts-tw │ └── project │ ├── %%.gitignore │ ├── .editorconfig │ ├── .vscode │ └── settings.json │ ├── README.md │ ├── eslint.config.mjs │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ └── vite.svg │ ├── src │ ├── App.tsx │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── tsup.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | dist 4 | .DS_Store 5 | 6 | HELPERS.md -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | templates 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/r/eslint-next-ts-tailwind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/public/r/eslint-next-ts-tailwind.json -------------------------------------------------------------------------------- /public/r/next-eslint-ts-shadcn/eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/public/r/next-eslint-ts-shadcn/eslint.json -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/registry.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/auth0/AUTH0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/auth0/AUTH0.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/auth0/src/auth/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/auth0/src/auth/provider.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/clerk/CLERK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/clerk/CLERK.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/clerk/src/auth/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/clerk/src/auth/provider.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/kinde/KINDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/kinde/KINDE.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/kinde/src/app/api/auth/[kindeAuth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/kinde/src/app/api/auth/[kindeAuth]/route.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/libsql/LIBSQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/libsql/LIBSQL.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/libsql/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/libsql/drizzle.config.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/libsql/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/libsql/src/db/index.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/libsql/src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/libsql/src/db/schema.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/mercadopago/MERCADOPAGO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/mercadopago/MERCADOPAGO.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/mercadopago/src/payment/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/mercadopago/src/payment/api.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/supabase/SUPABASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/supabase/SUPABASE.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/supabase/src/db/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/supabase/src/db/api/client.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/supabase/src/db/api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/supabase/src/db/api/server.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/extras/supabase/src/db/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/extras/supabase/src/db/types.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/%%.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/%%.gitignore -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/.editorconfig -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/.vscode/launch.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/.vscode/settings.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/README.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/components.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/eslint.config.mjs -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/next.config.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/package.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/pnpm-lock.yaml -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/postcss.config.mjs -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/public/next.svg -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/public/vercel.svg -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/src/app/globals.css -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/src/app/layout.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/src/app/page.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/src/components/ui/button.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/src/lib/utils.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-shadcn/project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-shadcn/project/tsconfig.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/auth0/AUTH0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/auth0/AUTH0.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/auth0/src/auth/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/auth0/src/auth/provider.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/clerk/CLERK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/clerk/CLERK.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/clerk/src/auth/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/clerk/src/auth/provider.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/kinde/KINDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/kinde/KINDE.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/kinde/src/app/api/auth/[kindeAuth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/kinde/src/app/api/auth/[kindeAuth]/route.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/libsql/LIBSQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/libsql/LIBSQL.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/libsql/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/libsql/drizzle.config.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/libsql/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/libsql/src/db/index.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/libsql/src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/libsql/src/db/schema.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/mercadopago/MERCADOPAGO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/mercadopago/MERCADOPAGO.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/mercadopago/src/payment/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/mercadopago/src/payment/api.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/supabase/SUPABASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/supabase/SUPABASE.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/supabase/src/db/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/supabase/src/db/api/client.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/supabase/src/db/api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/supabase/src/db/api/server.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/extras/supabase/src/db/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/extras/supabase/src/db/types.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/%%.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/%%.gitignore -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/.editorconfig -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/.vscode/launch.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/.vscode/settings.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/README.md -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/eslint.config.mjs -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/next.config.ts -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/package.json -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/pnpm-lock.yaml -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/postcss.config.mjs -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/public/next.svg -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/public/vercel.svg -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/src/app/globals.css -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/src/app/layout.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/src/app/page.tsx -------------------------------------------------------------------------------- /templates/next-eslint-ts-tw/project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/next-eslint-ts-tw/project/tsconfig.json -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/%%.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/%%.gitignore -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/.editorconfig -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/.vscode/settings.json -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/README.md -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/eslint.config.mjs -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/index.html -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/package.json -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/pnpm-lock.yaml -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/public/vite.svg -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/src/App.tsx -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/src/index.css -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/src/main.tsx -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/tsconfig.json -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/tsconfig.node.json -------------------------------------------------------------------------------- /templates/react-eslint-ts-tw/project/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/templates/react-eslint-ts-tw/project/vite.config.ts -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goncy/create-appncy/HEAD/tsup.config.ts --------------------------------------------------------------------------------