create-apppaaaul 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +164 -0
- package/dist/index.js.map +1 -0
- package/dist/templates/nextjs-ts-clean/project/.editorconfig +9 -0
- package/dist/templates/nextjs-ts-clean/project/.gitignore +39 -0
- package/dist/templates/nextjs-ts-clean/project/.vscode/launch.json +28 -0
- package/dist/templates/nextjs-ts-clean/project/.vscode/settings.json +8 -0
- package/dist/templates/nextjs-ts-clean/project/README.md +15 -0
- package/dist/templates/nextjs-ts-clean/project/eslint.config.mjs +172 -0
- package/dist/templates/nextjs-ts-clean/project/next.config.mjs +13 -0
- package/dist/templates/nextjs-ts-clean/project/package.json +46 -0
- package/dist/templates/nextjs-ts-clean/project/pnpm-lock.yaml +5463 -0
- package/dist/templates/nextjs-ts-clean/project/postcss.config.js +6 -0
- package/dist/templates/nextjs-ts-clean/project/public/next.svg +1 -0
- package/dist/templates/nextjs-ts-clean/project/public/vercel.svg +1 -0
- package/dist/templates/nextjs-ts-clean/project/src/app/favicon.ico +0 -0
- package/dist/templates/nextjs-ts-clean/project/src/app/globals.css +77 -0
- package/dist/templates/nextjs-ts-clean/project/src/app/layout.tsx +26 -0
- package/dist/templates/nextjs-ts-clean/project/src/app/page.tsx +5 -0
- package/dist/templates/nextjs-ts-clean/project/src/components/ui/button.tsx +49 -0
- package/dist/templates/nextjs-ts-clean/project/src/lib/utils.ts +6 -0
- package/dist/templates/nextjs-ts-clean/project/tailwind.config.ts +80 -0
- package/dist/templates/nextjs-ts-clean/project/tsconfig.json +27 -0
- package/dist/templates/nextjs-ts-landing/project/.editorconfig +9 -0
- package/dist/templates/nextjs-ts-landing/project/.eslintrc.mjs +172 -0
- package/dist/templates/nextjs-ts-landing/project/.gitignore +39 -0
- package/dist/templates/nextjs-ts-landing/project/.vscode/launch.json +28 -0
- package/dist/templates/nextjs-ts-landing/project/.vscode/settings.json +8 -0
- package/dist/templates/nextjs-ts-landing/project/README.md +15 -0
- package/dist/templates/nextjs-ts-landing/project/components.json +17 -0
- package/dist/templates/nextjs-ts-landing/project/docker-compose.yml +15 -0
- package/dist/templates/nextjs-ts-landing/project/drizzle.config.ts +11 -0
- package/dist/templates/nextjs-ts-landing/project/next.config.mjs +10 -0
- package/dist/templates/nextjs-ts-landing/project/package.json +57 -0
- package/dist/templates/nextjs-ts-landing/project/pnpm-lock.yaml +6248 -0
- package/dist/templates/nextjs-ts-landing/project/postcss.config.js +6 -0
- package/dist/templates/nextjs-ts-landing/project/public/next.svg +1 -0
- package/dist/templates/nextjs-ts-landing/project/public/vercel.svg +1 -0
- package/dist/templates/nextjs-ts-landing/project/src/app/api/auth/[...nextauth]/route.ts +3 -0
- package/dist/templates/nextjs-ts-landing/project/src/app/favicon.ico +0 -0
- package/dist/templates/nextjs-ts-landing/project/src/app/globals.css +47 -0
- package/dist/templates/nextjs-ts-landing/project/src/app/layout.tsx +20 -0
- package/dist/templates/nextjs-ts-landing/project/src/app/page.tsx +5 -0
- package/dist/templates/nextjs-ts-landing/project/src/auth.ts +79 -0
- package/dist/templates/nextjs-ts-landing/project/src/components/ui/button.tsx +49 -0
- package/dist/templates/nextjs-ts-landing/project/src/db/index.ts +25 -0
- package/dist/templates/nextjs-ts-landing/project/src/db/schema.ts +93 -0
- package/dist/templates/nextjs-ts-landing/project/src/lib/utils.ts +6 -0
- package/dist/templates/nextjs-ts-landing/project/tailwind.config.ts +80 -0
- package/dist/templates/nextjs-ts-landing/project/tsconfig.json +27 -0
- package/package.json +43 -43
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "{{name}}",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "docker compose up -d && next dev",
|
|
7
|
+
"build": "next build",
|
|
8
|
+
"start": "next start",
|
|
9
|
+
"lint": "next lint",
|
|
10
|
+
"db:push": "drizzle-kit push",
|
|
11
|
+
"db:studio": "pnpm drizzle-kit studio"
|
|
12
|
+
},
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@auth/drizzle-adapter": "^1.8.0",
|
|
15
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
16
|
+
"autoprefixer": "^10.4.21",
|
|
17
|
+
"bcryptjs": "^2.4.3",
|
|
18
|
+
"class-variance-authority": "^0.7.1",
|
|
19
|
+
"clsx": "^2.1.1",
|
|
20
|
+
"dotenv": "^16.4.7",
|
|
21
|
+
"drizzle-orm": "^0.39.3",
|
|
22
|
+
"lucide-react": "^0.474.0",
|
|
23
|
+
"next": "^15.2.4",
|
|
24
|
+
"next-auth": "4.24.11",
|
|
25
|
+
"postcss": "^8.5.3",
|
|
26
|
+
"postgres": "^3.4.5",
|
|
27
|
+
"react": "^19.0.0",
|
|
28
|
+
"react-dom": "^19.0.0",
|
|
29
|
+
"sonner": "^1.7.4",
|
|
30
|
+
"tailwind-merge": "^3.0.2",
|
|
31
|
+
"tailwindcss": "^4.0.15",
|
|
32
|
+
"tailwindcss-animate": "^1.0.7",
|
|
33
|
+
"tsx": "^4.19.3",
|
|
34
|
+
"zod": "^3.24.2"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@eslint/compat": "^1.2.7",
|
|
38
|
+
"@next/eslint-plugin-next": "15.1.6",
|
|
39
|
+
"@types/node": "^22.13.13",
|
|
40
|
+
"@types/react": "^19.0.12",
|
|
41
|
+
"@types/react-dom": "^19.0.4",
|
|
42
|
+
"@vercel/style-guide": "^6.0.0",
|
|
43
|
+
"drizzle-kit": "^0.30.5",
|
|
44
|
+
"eslint": "^9.23.0",
|
|
45
|
+
"eslint-config-next": "15.1.6",
|
|
46
|
+
"eslint-config-prettier": "^10.1.1",
|
|
47
|
+
"eslint-plugin-import": "^2.31.0",
|
|
48
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
49
|
+
"eslint-plugin-prettier": "^5.2.4",
|
|
50
|
+
"eslint-plugin-react-compiler": "0.0.0-experimental-c8b3f72-20240517",
|
|
51
|
+
"globals": "^15.15.0",
|
|
52
|
+
"prettier": "^3.5.3",
|
|
53
|
+
"prettier-plugin-tailwindcss": "^0.6.11",
|
|
54
|
+
"typescript": "^5.8.2",
|
|
55
|
+
"typescript-eslint": "^8.27.0"
|
|
56
|
+
}
|
|
57
|
+
}
|