create-stackkit-app 0.3.0 → 0.4.0

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 (88) hide show
  1. package/README.md +12 -94
  2. package/dist/index.d.ts +0 -1
  3. package/dist/index.js +0 -1
  4. package/dist/lib/create-project.d.ts +0 -1
  5. package/dist/lib/create-project.js +124 -67
  6. package/dist/lib/template-composer.d.ts +0 -1
  7. package/dist/lib/template-composer.js +0 -2
  8. package/modules/auth/authjs-express/files/lib/auth.ts +40 -0
  9. package/modules/auth/authjs-express/files/routes/auth.ts +12 -0
  10. package/modules/auth/authjs-express/module.json +39 -0
  11. package/modules/auth/authjs-nextjs/files/lib/auth.ts +43 -0
  12. package/modules/auth/authjs-nextjs/module.json +38 -0
  13. package/modules/auth/better-auth-express/files/lib/auth.ts +16 -0
  14. package/modules/auth/better-auth-express/files/routes/auth.ts +12 -0
  15. package/modules/auth/better-auth-express/module.json +38 -0
  16. package/{templates/auth/better-auth-nextjs/app → modules/auth/better-auth-nextjs/files}/api/auth/[...all]/route.ts +1 -0
  17. package/modules/auth/better-auth-nextjs/files/lib/auth.ts +26 -0
  18. package/modules/auth/better-auth-nextjs/module.json +41 -0
  19. package/modules/auth/better-auth-react/files/lib/auth-client.ts +9 -0
  20. package/modules/auth/better-auth-react/module.json +26 -0
  21. package/modules/auth/clerk-express/files/lib/auth.ts +7 -0
  22. package/modules/auth/clerk-express/module.json +19 -0
  23. package/modules/auth/clerk-nextjs/files/lib/auth-provider.tsx +5 -0
  24. package/modules/auth/clerk-nextjs/files/middleware.ts +9 -0
  25. package/modules/auth/clerk-nextjs/module.json +27 -0
  26. package/modules/auth/clerk-react/files/lib/auth-provider.tsx +15 -0
  27. package/modules/auth/clerk-react/module.json +18 -0
  28. package/modules/auth/nextauth/files/app-router/api/auth/[...nextauth]/route.ts +6 -0
  29. package/modules/auth/nextauth/files/lib/auth.ts +82 -0
  30. package/modules/auth/nextauth/files/pages-router/api/auth/[...nextauth].ts +4 -0
  31. package/modules/auth/nextauth/module.json +50 -0
  32. package/modules/database/drizzle-postgresql/files/drizzle.config.ts +10 -0
  33. package/modules/database/drizzle-postgresql/files/lib/db.ts +7 -0
  34. package/modules/database/drizzle-postgresql/files/lib/schema.ts +8 -0
  35. package/modules/database/drizzle-postgresql/module.json +34 -0
  36. package/modules/database/mongoose-mongodb/files/lib/db.ts +40 -0
  37. package/modules/database/mongoose-mongodb/module.json +17 -0
  38. package/{templates/databases/prisma-mongodb → modules/database/prisma-mongodb/files}/lib/db.ts +2 -6
  39. package/{templates/databases/prisma-mongodb → modules/database/prisma-mongodb/files}/prisma/schema.prisma +1 -0
  40. package/modules/database/prisma-mongodb/module.json +36 -0
  41. package/{templates/databases/prisma-postgresql → modules/database/prisma-postgresql/files}/lib/db.ts +2 -6
  42. package/{templates/databases/prisma-postgresql → modules/database/prisma-postgresql/files}/prisma/schema.prisma +1 -0
  43. package/modules/database/prisma-postgresql/module.json +36 -0
  44. package/package.json +7 -5
  45. package/templates/bases/nextjs-base/README.md +36 -0
  46. package/templates/bases/nextjs-base/app/favicon.ico +0 -0
  47. package/templates/bases/nextjs-base/app/globals.css +26 -3
  48. package/templates/bases/nextjs-base/app/layout.tsx +21 -6
  49. package/templates/bases/nextjs-base/app/page.tsx +61 -4
  50. package/templates/bases/nextjs-base/eslint.config.mjs +18 -0
  51. package/templates/bases/nextjs-base/next.config.ts +4 -2
  52. package/templates/bases/nextjs-base/package-lock.json +6538 -0
  53. package/templates/bases/nextjs-base/package.json +12 -10
  54. package/templates/bases/nextjs-base/postcss.config.mjs +7 -0
  55. package/templates/bases/nextjs-base/public/file.svg +1 -0
  56. package/templates/bases/nextjs-base/public/globe.svg +1 -0
  57. package/templates/bases/nextjs-base/public/next.svg +1 -0
  58. package/templates/bases/nextjs-base/public/vercel.svg +1 -0
  59. package/templates/bases/nextjs-base/public/window.svg +1 -0
  60. package/templates/bases/nextjs-base/template.json +12 -1
  61. package/templates/bases/nextjs-base/tsconfig.json +9 -2
  62. package/templates/bases/react-vite-base/index.html +13 -0
  63. package/templates/bases/react-vite-base/package.json +27 -0
  64. package/templates/bases/react-vite-base/src/App.css +14 -0
  65. package/templates/bases/react-vite-base/src/App.tsx +23 -0
  66. package/templates/bases/react-vite-base/src/index.css +68 -0
  67. package/templates/bases/react-vite-base/src/main.tsx +10 -0
  68. package/templates/bases/react-vite-base/src/vite-env.d.ts +1 -0
  69. package/templates/bases/react-vite-base/template.json +5 -0
  70. package/templates/bases/react-vite-base/tsconfig.json +21 -0
  71. package/templates/bases/react-vite-base/vite.config.ts +7 -0
  72. package/dist/index.d.ts.map +0 -1
  73. package/dist/index.js.map +0 -1
  74. package/dist/lib/create-project.d.ts.map +0 -1
  75. package/dist/lib/create-project.js.map +0 -1
  76. package/dist/lib/template-composer.d.ts.map +0 -1
  77. package/dist/lib/template-composer.js.map +0 -1
  78. package/templates/auth/better-auth-express/config.json +0 -18
  79. package/templates/auth/better-auth-express/src/lib/auth.ts +0 -12
  80. package/templates/auth/better-auth-express/src/routes/auth.ts +0 -10
  81. package/templates/auth/better-auth-nextjs/config.json +0 -18
  82. package/templates/auth/better-auth-nextjs/lib/auth.ts +0 -14
  83. package/templates/auth/nextauth/config.json +0 -18
  84. package/templates/auth/nextauth/lib/auth.ts +0 -31
  85. package/templates/bases/nextjs-base/.eslintrc.json +0 -3
  86. package/templates/databases/prisma-mongodb/config.json +0 -21
  87. package/templates/databases/prisma-postgresql/config.json +0 -22
  88. /package/{templates/auth/nextauth/app → modules/auth/authjs-nextjs/files}/api/auth/[...nextauth]/route.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.