create-apppaaaul 2.0.7 → 2.0.9

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.
Files changed (67) hide show
  1. package/README.md +20 -20
  2. package/dist/index.js +0 -0
  3. package/dist/index.js.map +1 -1
  4. package/dist/templates/nextjs-ts-clean/project/.editorconfig +9 -9
  5. package/dist/templates/nextjs-ts-clean/project/.vscode/launch.json +28 -28
  6. package/dist/templates/nextjs-ts-clean/project/.vscode/settings.json +8 -8
  7. package/dist/templates/nextjs-ts-clean/project/README.md +15 -15
  8. package/dist/templates/nextjs-ts-clean/project/next.config.mjs +13 -13
  9. package/dist/templates/nextjs-ts-clean/project/package.json +47 -47
  10. package/dist/templates/nextjs-ts-clean/project/pnpm-lock.yaml +5463 -5463
  11. package/dist/templates/nextjs-ts-clean/project/postcss.config.js +6 -6
  12. package/dist/templates/nextjs-ts-clean/project/src/app/globals.css +76 -76
  13. package/dist/templates/nextjs-ts-clean/project/src/app/layout.tsx +25 -25
  14. package/dist/templates/nextjs-ts-clean/project/src/app/page.tsx +5 -5
  15. package/dist/templates/nextjs-ts-clean/project/src/components/ui/button.tsx +49 -49
  16. package/dist/templates/nextjs-ts-clean/project/src/lib/utils.ts +6 -6
  17. package/dist/templates/nextjs-ts-clean/project/tailwind.config.ts +79 -79
  18. package/dist/templates/nextjs-ts-clean/project/tsconfig.json +26 -26
  19. package/dist/templates/nextjs-ts-landing/project/.editorconfig +9 -9
  20. package/dist/templates/nextjs-ts-landing/project/.vscode/launch.json +28 -28
  21. package/dist/templates/nextjs-ts-landing/project/.vscode/settings.json +8 -8
  22. package/dist/templates/nextjs-ts-landing-drizzle/project/.editorconfig +9 -9
  23. package/dist/templates/nextjs-ts-landing-drizzle/project/.vscode/launch.json +28 -28
  24. package/dist/templates/nextjs-ts-landing-drizzle/project/.vscode/settings.json +8 -8
  25. package/dist/templates/nextjs-ts-landing-drizzle/project/README.md +15 -15
  26. package/dist/templates/nextjs-ts-landing-drizzle/project/components.json +16 -16
  27. package/dist/templates/nextjs-ts-landing-drizzle/project/drizzle.config.ts +11 -11
  28. package/dist/templates/nextjs-ts-landing-drizzle/project/next.config.mjs +10 -10
  29. package/dist/templates/nextjs-ts-landing-drizzle/project/package.json +56 -56
  30. package/dist/templates/nextjs-ts-landing-drizzle/project/pnpm-lock.yaml +6248 -6248
  31. package/dist/templates/nextjs-ts-landing-drizzle/project/postcss.config.js +6 -6
  32. package/dist/templates/nextjs-ts-landing-drizzle/project/src/app/api/auth/[...nextauth]/route.ts +3 -3
  33. package/dist/templates/nextjs-ts-landing-drizzle/project/src/app/globals.css +47 -47
  34. package/dist/templates/nextjs-ts-landing-drizzle/project/src/app/layout.tsx +20 -20
  35. package/dist/templates/nextjs-ts-landing-drizzle/project/src/app/page.tsx +5 -5
  36. package/dist/templates/nextjs-ts-landing-drizzle/project/src/auth.ts +79 -79
  37. package/dist/templates/nextjs-ts-landing-drizzle/project/src/components/ui/button.tsx +49 -49
  38. package/dist/templates/nextjs-ts-landing-drizzle/project/src/db/index.ts +25 -25
  39. package/dist/templates/nextjs-ts-landing-drizzle/project/src/db/schema.ts +93 -93
  40. package/dist/templates/nextjs-ts-landing-drizzle/project/src/lib/utils.ts +6 -6
  41. package/dist/templates/nextjs-ts-landing-drizzle/project/tailwind.config.ts +80 -80
  42. package/dist/templates/nextjs-ts-landing-drizzle/project/tsconfig.json +27 -27
  43. package/dist/templates/nextjs-ts-landing-prisma/project/.editorconfig +9 -9
  44. package/dist/templates/nextjs-ts-landing-prisma/project/.vscode/launch.json +28 -28
  45. package/dist/templates/nextjs-ts-landing-prisma/project/.vscode/settings.json +8 -8
  46. package/dist/templates/nextjs-ts-landing-prisma/project/README.md +15 -15
  47. package/dist/templates/nextjs-ts-landing-prisma/project/components.json +16 -16
  48. package/dist/templates/nextjs-ts-landing-prisma/project/next.config.mjs +10 -10
  49. package/dist/templates/nextjs-ts-landing-prisma/project/package.json +57 -57
  50. package/dist/templates/nextjs-ts-landing-prisma/project/postcss.config.mjs +4 -4
  51. package/dist/templates/nextjs-ts-landing-prisma/project/src/app/api/auth/[...nextauth]/route.ts +3 -3
  52. package/dist/templates/nextjs-ts-landing-prisma/project/src/app/globals.css +116 -116
  53. package/dist/templates/nextjs-ts-landing-prisma/project/src/app/layout.tsx +20 -20
  54. package/dist/templates/nextjs-ts-landing-prisma/project/src/app/page.tsx +5 -5
  55. package/dist/templates/nextjs-ts-landing-prisma/project/src/auth.ts +79 -79
  56. package/dist/templates/nextjs-ts-landing-prisma/project/src/components/ui/button.tsx +49 -49
  57. package/dist/templates/nextjs-ts-landing-prisma/project/src/lib/db.ts +10 -10
  58. package/dist/templates/nextjs-ts-landing-prisma/project/src/lib/utils.ts +6 -6
  59. package/dist/templates/nextjs-ts-landing-prisma/project/tailwind.config.ts +80 -80
  60. package/dist/templates/nextjs-ts-landing-prisma/project/tsconfig.json +27 -27
  61. package/package.json +43 -43
  62. package/dist/templates/nextjs-ts-landing/project/.eslintrc.cjs +0 -101
  63. package/dist/templates/nextjs-ts-landing-prisma/project/pnpm-lock.yaml +0 -5854
  64. package/dist/templates/nextjs-ts-landing-prisma/project/pnpm-workspace.yaml +0 -6
  65. package/dist/templates/nextjs-ts-landing-prisma/project/prisma/migrations/20250329125127_init/migration.sql +0 -25
  66. package/dist/templates/nextjs-ts-landing-prisma/project/prisma/migrations/migration_lock.toml +0 -3
  67. package/dist/templates/nextjs-ts-landing-prisma/project/prisma/schema.prisma +0 -24
@@ -1,9 +1,9 @@
1
- root = true
2
-
3
- [*]
4
- insert_final_newline = true
5
- charset = utf-8
6
- indent_style = space
7
- indent_size = 2
8
- trim_trailing_whitespace = true
9
- max_line_length = 80
1
+ root = true
2
+
3
+ [*]
4
+ insert_final_newline = true
5
+ charset = utf-8
6
+ indent_style = space
7
+ indent_size = 2
8
+ trim_trailing_whitespace = true
9
+ max_line_length = 80
@@ -1,28 +1,28 @@
1
- {
2
- "version": "0.2.0",
3
- "configurations": [
4
- {
5
- "name": "Next.js: debug server-side",
6
- "type": "node-terminal",
7
- "request": "launch",
8
- "command": "pnpm dev"
9
- },
10
- {
11
- "name": "Next.js: debug client-side",
12
- "type": "chrome",
13
- "request": "launch",
14
- "url": "http://localhost:3000"
15
- },
16
- {
17
- "name": "Next.js: debug full stack",
18
- "type": "node-terminal",
19
- "request": "launch",
20
- "command": "pnpm dev",
21
- "serverReadyAction": {
22
- "pattern": "started server on .+, url: (https?://.+)",
23
- "uriFormat": "%s",
24
- "action": "debugWithChrome"
25
- }
26
- }
27
- ]
28
- }
1
+ {
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "Next.js: debug server-side",
6
+ "type": "node-terminal",
7
+ "request": "launch",
8
+ "command": "pnpm dev"
9
+ },
10
+ {
11
+ "name": "Next.js: debug client-side",
12
+ "type": "chrome",
13
+ "request": "launch",
14
+ "url": "http://localhost:3000"
15
+ },
16
+ {
17
+ "name": "Next.js: debug full stack",
18
+ "type": "node-terminal",
19
+ "request": "launch",
20
+ "command": "pnpm dev",
21
+ "serverReadyAction": {
22
+ "pattern": "started server on .+, url: (https?://.+)",
23
+ "uriFormat": "%s",
24
+ "action": "debugWithChrome"
25
+ }
26
+ }
27
+ ]
28
+ }
@@ -1,8 +1,8 @@
1
- {
2
- "editor.formatOnSave": false,
3
- "typescript.tsdk": "node_modules\\typescript\\lib",
4
- "typescript.enablePromptUseWorkspaceTsdk": true,
5
- "editor.codeActionsOnSave": {
6
- "source.fixAll.eslint": true
7
- }
8
- }
1
+ {
2
+ "editor.formatOnSave": false,
3
+ "typescript.tsdk": "node_modules\\typescript\\lib",
4
+ "typescript.enablePromptUseWorkspaceTsdk": true,
5
+ "editor.codeActionsOnSave": {
6
+ "source.fixAll.eslint": true
7
+ }
8
+ }
@@ -1,15 +1,15 @@
1
- ## Getting Started with {{name}}
2
-
3
- First, run the development server:
4
-
5
- ```bash
6
- npm run dev
7
- # or
8
- yarn dev
9
- # or
10
- pnpm dev
11
- ```
12
-
13
- Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14
-
15
- You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
1
+ ## Getting Started with {{name}}
2
+
3
+ First, run the development server:
4
+
5
+ ```bash
6
+ npm run dev
7
+ # or
8
+ yarn dev
9
+ # or
10
+ pnpm dev
11
+ ```
12
+
13
+ Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
14
+
15
+ You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
@@ -1,17 +1,17 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema.json",
3
- "style": "default",
4
- "rsc": true,
5
- "tsx": true,
6
- "tailwind": {
7
- "config": "tailwind.config.ts",
8
- "css": "src/app/globals.css",
9
- "baseColor": "zinc",
10
- "cssVariables": true,
11
- "prefix": ""
12
- },
13
- "aliases": {
14
- "components": "@/components",
15
- "utils": "@/lib/utils"
16
- }
1
+ {
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "default",
4
+ "rsc": true,
5
+ "tsx": true,
6
+ "tailwind": {
7
+ "config": "tailwind.config.ts",
8
+ "css": "src/app/globals.css",
9
+ "baseColor": "zinc",
10
+ "cssVariables": true,
11
+ "prefix": ""
12
+ },
13
+ "aliases": {
14
+ "components": "@/components",
15
+ "utils": "@/lib/utils"
16
+ }
17
17
  }
@@ -1,11 +1,11 @@
1
- import { config } from "dotenv";
2
- import { defineConfig } from "drizzle-kit";
3
- config({ path: ".env" });
4
-
5
- export default defineConfig({
6
- schema: "./src/db/schema.ts",
7
- dialect: "postgresql",
8
- dbCredentials: {
9
- url: process.env.DATABASE_URL!,
10
- },
11
- });
1
+ import { config } from "dotenv";
2
+ import { defineConfig } from "drizzle-kit";
3
+ config({ path: ".env" });
4
+
5
+ export default defineConfig({
6
+ schema: "./src/db/schema.ts",
7
+ dialect: "postgresql",
8
+ dbCredentials: {
9
+ url: process.env.DATABASE_URL!,
10
+ },
11
+ });
@@ -1,10 +1,10 @@
1
- /** @type {import('next').NextConfig} */
2
- const nextConfig = {
3
- logging: {
4
- fetches: {
5
- fullUrl: true,
6
- },
7
- },
8
- };
9
-
10
- export default nextConfig;
1
+ /** @type {import('next').NextConfig} */
2
+ const nextConfig = {
3
+ logging: {
4
+ fetches: {
5
+ fullUrl: true,
6
+ },
7
+ },
8
+ };
9
+
10
+ export default nextConfig;
@@ -1,57 +1,57 @@
1
- {
2
- "name": "{{name}}",
3
- "version": "0.1.0",
4
- "private": true,
5
- "scripts": {
6
- "dev": "docker compose up -d && next dev --turbopack",
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
- }
1
+ {
2
+ "name": "{{name}}",
3
+ "version": "0.1.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "dev": "docker compose up -d && next dev --turbopack",
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
57
  }