@dartix-software-solutions/create-fullstack-app 2.0.3 → 2.0.5

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 (539) hide show
  1. package/dist/bin/create-fullstack-app.js +1 -1
  2. package/dist/{chunk-AOJL2555.js → chunk-5JQGY4TN.js} +8 -6
  3. package/dist/devops/docker/templates/.dockerignore.hbs +5 -0
  4. package/dist/devops/gitlab-ci/templates/.gitlab-ci.yml.hbs +14 -0
  5. package/dist/devtools/eslint/templates/.eslintignore.hbs +3 -0
  6. package/dist/devtools/lint-staged/templates/.lintstagedrc.hbs +5 -0
  7. package/dist/devtools/prettier/templates/.prettierignore.hbs +4 -0
  8. package/dist/devtools/prettier/templates/.prettierrc.hbs +6 -0
  9. package/dist/{plugins/frontends → frontends}/web/next/templates/app/layout.tsx.hbs +1 -1
  10. package/dist/index.js +1 -1
  11. package/dist/mobile-navigation/expo-router/templates/.gitkeep +0 -0
  12. package/dist/testing/detox/templates/.detoxrc.js.hbs +7 -0
  13. package/dist/testing/maestro/templates/.maestro/home.yaml.hbs +4 -0
  14. package/dist/testing/maestro/templates/.maestro/login.yaml.hbs +5 -0
  15. package/package.json +1 -1
  16. /package/dist/{plugins/api-client → api-client}/axios/templates/api-client.ts.hbs +0 -0
  17. /package/dist/{plugins/api-client → api-client}/fetch-wrapper/templates/api-client.ts.hbs +0 -0
  18. /package/dist/{plugins/api-client → api-client}/trpc-client/templates/providers/TrpcProvider.tsx.hbs +0 -0
  19. /package/dist/{plugins/api-client → api-client}/trpc-client/templates/trpc.ts.hbs +0 -0
  20. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/resolvers/index.ts.hbs +0 -0
  21. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/resolvers/user.resolver.ts.hbs +0 -0
  22. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/route-import.hbs +0 -0
  23. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/route-register.hbs +0 -0
  24. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/schema.ts.hbs +0 -0
  25. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/server-plugin.ts.hbs +0 -0
  26. /package/dist/{plugins/api-style → api-style}/graphql-server/templates/types/user.type.ts.hbs +0 -0
  27. /package/dist/{plugins/api-style → api-style}/trpc-server/templates/route-import.hbs +0 -0
  28. /package/dist/{plugins/api-style → api-style}/trpc-server/templates/route-register.hbs +0 -0
  29. /package/dist/{plugins/api-style → api-style}/trpc-server/templates/routers/index.ts.hbs +0 -0
  30. /package/dist/{plugins/api-style → api-style}/trpc-server/templates/routers/user.router.ts.hbs +0 -0
  31. /package/dist/{plugins/api-style → api-style}/trpc-server/templates/server-plugin.ts.hbs +0 -0
  32. /package/dist/{plugins/api-style → api-style}/trpc-server/templates/trpc.ts.hbs +0 -0
  33. /package/dist/{plugins/auth → auth}/clerk/templates/mobile/providers/ClerkProvider.tsx.hbs +0 -0
  34. /package/dist/{plugins/auth → auth}/clerk/templates/web/middleware.ts.hbs +0 -0
  35. /package/dist/{plugins/auth → auth}/clerk/templates/web/providers/ClerkProvider.tsx.hbs +0 -0
  36. /package/dist/{plugins/auth → auth}/jwt-custom/templates/backend/auth.middleware.ts.hbs +0 -0
  37. /package/dist/{plugins/auth → auth}/jwt-custom/templates/backend/auth.routes.ts.hbs +0 -0
  38. /package/dist/{plugins/auth → auth}/jwt-custom/templates/backend/auth.service.ts.hbs +0 -0
  39. /package/dist/{plugins/auth → auth}/jwt-custom/templates/backend/jwt.utils.ts.hbs +0 -0
  40. /package/dist/{plugins/auth → auth}/jwt-custom/templates/backend/route-import.hbs +0 -0
  41. /package/dist/{plugins/auth → auth}/jwt-custom/templates/backend/route-register.hbs +0 -0
  42. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/mobile/AuthProvider.tsx.hbs +0 -0
  43. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/mobile/LoginScreen.tsx.hbs +0 -0
  44. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/mobile/RegisterScreen.tsx.hbs +0 -0
  45. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/mobile/auth-layout.tsx.hbs +0 -0
  46. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/web/AuthProvider.tsx.hbs +0 -0
  47. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/web/LoginPage.tsx.hbs +0 -0
  48. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/web/ProtectedRoute.tsx.hbs +0 -0
  49. /package/dist/{plugins/auth → auth}/jwt-custom/templates/frontend/web/RegisterPage.tsx.hbs +0 -0
  50. /package/dist/{plugins/auth → auth}/lucia/templates/auth.middleware.ts.hbs +0 -0
  51. /package/dist/{plugins/auth → auth}/lucia/templates/auth.routes.ts.hbs +0 -0
  52. /package/dist/{plugins/auth → auth}/lucia/templates/auth.ts.hbs +0 -0
  53. /package/dist/{plugins/auth → auth}/lucia/templates/route-import.hbs +0 -0
  54. /package/dist/{plugins/auth → auth}/lucia/templates/route-register.hbs +0 -0
  55. /package/dist/{plugins/auth → auth}/next-auth/templates/auth.config.ts.hbs +0 -0
  56. /package/dist/{plugins/auth → auth}/next-auth/templates/auth.ts.hbs +0 -0
  57. /package/dist/{plugins/auth → auth}/next-auth/templates/middleware.ts.hbs +0 -0
  58. /package/dist/{plugins/auth → auth}/next-auth/templates/providers/SessionProvider.tsx.hbs +0 -0
  59. /package/dist/{plugins/backend-extras → backend-extras}/bullmq/templates/jobs/send-email.ts.hbs +0 -0
  60. /package/dist/{plugins/backend-extras → backend-extras}/bullmq/templates/queue.ts.hbs +0 -0
  61. /package/dist/{plugins/backend-extras → backend-extras}/bullmq/templates/workers/email.worker.ts.hbs +0 -0
  62. /package/dist/{plugins/backend-extras → backend-extras}/compression/templates/compression.ts.hbs +0 -0
  63. /package/dist/{plugins/backend-extras → backend-extras}/cors-config/templates/cors.ts.hbs +0 -0
  64. /package/dist/{plugins/backend-extras → backend-extras}/cron/templates/cron.ts.hbs +0 -0
  65. /package/dist/{plugins/backend-extras → backend-extras}/cron/templates/jobs/cleanup.ts.hbs +0 -0
  66. /package/dist/{plugins/backend-extras → backend-extras}/email/templates/email.routes.ts.hbs +0 -0
  67. /package/dist/{plugins/backend-extras → backend-extras}/email/templates/email.service.ts.hbs +0 -0
  68. /package/dist/{plugins/backend-extras → backend-extras}/email/templates/templates/reset-password.hbs.hbs +0 -0
  69. /package/dist/{plugins/backend-extras → backend-extras}/email/templates/templates/welcome.hbs.hbs +0 -0
  70. /package/dist/{plugins/backend-extras → backend-extras}/firebase-push/templates/firebase.ts.hbs +0 -0
  71. /package/dist/{plugins/backend-extras → backend-extras}/firebase-push/templates/push.routes.ts.hbs +0 -0
  72. /package/dist/{plugins/backend-extras → backend-extras}/firebase-push/templates/push.service.ts.hbs +0 -0
  73. /package/dist/{plugins/backend-extras → backend-extras}/firebase-push/templates/route-import.hbs +0 -0
  74. /package/dist/{plugins/backend-extras → backend-extras}/firebase-push/templates/route-register.hbs +0 -0
  75. /package/dist/{plugins/backend-extras → backend-extras}/helmet/templates/security.ts.hbs +0 -0
  76. /package/dist/{plugins/backend-extras → backend-extras}/multer/templates/route-import.hbs +0 -0
  77. /package/dist/{plugins/backend-extras → backend-extras}/multer/templates/route-register.hbs +0 -0
  78. /package/dist/{plugins/backend-extras → backend-extras}/multer/templates/upload.middleware.ts.hbs +0 -0
  79. /package/dist/{plugins/backend-extras → backend-extras}/multer/templates/upload.routes.ts.hbs +0 -0
  80. /package/dist/{plugins/backend-extras → backend-extras}/rate-limit/templates/rate-limit.express.ts.hbs +0 -0
  81. /package/dist/{plugins/backend-extras → backend-extras}/rate-limit/templates/rate-limit.fastify.ts.hbs +0 -0
  82. /package/dist/{plugins/backend-extras → backend-extras}/rate-limit/templates/rate-limit.hono.ts.hbs +0 -0
  83. /package/dist/{plugins/backend-extras → backend-extras}/rate-limit/templates/rate-limit.nestjs.ts.hbs +0 -0
  84. /package/dist/{plugins/backend-extras → backend-extras}/s3-upload/templates/route-import.hbs +0 -0
  85. /package/dist/{plugins/backend-extras → backend-extras}/s3-upload/templates/route-register.hbs +0 -0
  86. /package/dist/{plugins/backend-extras → backend-extras}/s3-upload/templates/s3.service.ts.hbs +0 -0
  87. /package/dist/{plugins/backend-extras → backend-extras}/s3-upload/templates/upload.routes.ts.hbs +0 -0
  88. /package/dist/{plugins/backend-extras → backend-extras}/swagger/templates/swagger.express.ts.hbs +0 -0
  89. /package/dist/{plugins/backend-extras → backend-extras}/swagger/templates/swagger.fastify.ts.hbs +0 -0
  90. /package/dist/{plugins/backend-extras → backend-extras}/swagger/templates/swagger.nestjs.ts.hbs +0 -0
  91. /package/dist/{plugins/backend-extras → backend-extras}/websocket/templates/events/chat.ts.hbs +0 -0
  92. /package/dist/{plugins/backend-extras → backend-extras}/websocket/templates/route-import.hbs +0 -0
  93. /package/dist/{plugins/backend-extras → backend-extras}/websocket/templates/route-register.hbs +0 -0
  94. /package/dist/{plugins/backend-extras → backend-extras}/websocket/templates/websocket.ts.hbs +0 -0
  95. /package/dist/{plugins/backends → backends}/django/templates/config/__init__.py.hbs +0 -0
  96. /package/dist/{plugins/backends → backends}/django/templates/config/asgi.py.hbs +0 -0
  97. /package/dist/{plugins/backends → backends}/django/templates/config/settings.py.hbs +0 -0
  98. /package/dist/{plugins/backends → backends}/django/templates/config/urls.py.hbs +0 -0
  99. /package/dist/{plugins/backends → backends}/django/templates/config/wsgi.py.hbs +0 -0
  100. /package/dist/{plugins/backends → backends}/django/templates/core/__init__.py.hbs +0 -0
  101. /package/dist/{plugins/backends → backends}/django/templates/core/pagination.py.hbs +0 -0
  102. /package/dist/{plugins/backends → backends}/django/templates/core/permissions.py.hbs +0 -0
  103. /package/dist/{plugins/backends → backends}/django/templates/manage.py.hbs +0 -0
  104. /package/dist/{plugins/backends → backends}/django/templates/requirements.txt.hbs +0 -0
  105. /package/dist/{plugins/backends → backends}/django/templates/users/__init__.py.hbs +0 -0
  106. /package/dist/{plugins/backends → backends}/django/templates/users/admin.py.hbs +0 -0
  107. /package/dist/{plugins/backends → backends}/django/templates/users/models.py.hbs +0 -0
  108. /package/dist/{plugins/backends → backends}/django/templates/users/serializers.py.hbs +0 -0
  109. /package/dist/{plugins/backends → backends}/django/templates/users/tests.py.hbs +0 -0
  110. /package/dist/{plugins/backends → backends}/django/templates/users/urls.py.hbs +0 -0
  111. /package/dist/{plugins/backends → backends}/django/templates/users/views.py.hbs +0 -0
  112. /package/dist/{plugins/backends → backends}/express/templates/controllers/user.controller.ts.hbs +0 -0
  113. /package/dist/{plugins/backends → backends}/express/templates/lib/config.ts.hbs +0 -0
  114. /package/dist/{plugins/backends → backends}/express/templates/lib/utils.ts.hbs +0 -0
  115. /package/dist/{plugins/backends → backends}/express/templates/middleware/error-handler.ts.hbs +0 -0
  116. /package/dist/{plugins/backends → backends}/express/templates/middleware/not-found.ts.hbs +0 -0
  117. /package/dist/{plugins/backends → backends}/express/templates/middleware/validate.ts.hbs +0 -0
  118. /package/dist/{plugins/backends → backends}/express/templates/routes/health.ts.hbs +0 -0
  119. /package/dist/{plugins/backends → backends}/express/templates/routes/index.ts.hbs +0 -0
  120. /package/dist/{plugins/backends → backends}/express/templates/routes/users.ts.hbs +0 -0
  121. /package/dist/{plugins/backends → backends}/express/templates/server.ts.hbs +0 -0
  122. /package/dist/{plugins/backends → backends}/express/templates/services/user.service.ts.hbs +0 -0
  123. /package/dist/{plugins/backends → backends}/express/templates/tsconfig.json.hbs +0 -0
  124. /package/dist/{plugins/backends → backends}/express/templates/types/index.ts.hbs +0 -0
  125. /package/dist/{plugins/backends → backends}/fastapi/templates/app/__init__.py.hbs +0 -0
  126. /package/dist/{plugins/backends → backends}/fastapi/templates/app/core/__init__.py.hbs +0 -0
  127. /package/dist/{plugins/backends → backends}/fastapi/templates/app/core/config.py.hbs +0 -0
  128. /package/dist/{plugins/backends → backends}/fastapi/templates/app/main.py.hbs +0 -0
  129. /package/dist/{plugins/backends → backends}/fastapi/templates/app/routers/__init__.py.hbs +0 -0
  130. /package/dist/{plugins/backends → backends}/fastapi/templates/app/routers/health.py.hbs +0 -0
  131. /package/dist/{plugins/backends → backends}/fastapi/templates/app/routers/users.py.hbs +0 -0
  132. /package/dist/{plugins/backends → backends}/fastapi/templates/app/schemas/__init__.py.hbs +0 -0
  133. /package/dist/{plugins/backends → backends}/fastapi/templates/app/schemas/user.py.hbs +0 -0
  134. /package/dist/{plugins/backends → backends}/fastapi/templates/requirements.txt.hbs +0 -0
  135. /package/dist/{plugins/backends → backends}/fastify/templates/lib/config.ts.hbs +0 -0
  136. /package/dist/{plugins/backends → backends}/fastify/templates/lib/utils.ts.hbs +0 -0
  137. /package/dist/{plugins/backends → backends}/fastify/templates/plugins/sensible.ts.hbs +0 -0
  138. /package/dist/{plugins/backends → backends}/fastify/templates/routes/health.ts.hbs +0 -0
  139. /package/dist/{plugins/backends → backends}/fastify/templates/routes/index.ts.hbs +0 -0
  140. /package/dist/{plugins/backends → backends}/fastify/templates/routes/users.ts.hbs +0 -0
  141. /package/dist/{plugins/backends → backends}/fastify/templates/schemas/user.schema.ts.hbs +0 -0
  142. /package/dist/{plugins/backends → backends}/fastify/templates/server.ts.hbs +0 -0
  143. /package/dist/{plugins/backends → backends}/fastify/templates/services/user.service.ts.hbs +0 -0
  144. /package/dist/{plugins/backends → backends}/fastify/templates/tsconfig.json.hbs +0 -0
  145. /package/dist/{plugins/backends → backends}/fastify/templates/types/index.ts.hbs +0 -0
  146. /package/dist/{plugins/backends → backends}/hono/templates/lib/config.ts.hbs +0 -0
  147. /package/dist/{plugins/backends → backends}/hono/templates/lib/utils.ts.hbs +0 -0
  148. /package/dist/{plugins/backends → backends}/hono/templates/middleware/error-handler.ts.hbs +0 -0
  149. /package/dist/{plugins/backends → backends}/hono/templates/routes/health.ts.hbs +0 -0
  150. /package/dist/{plugins/backends → backends}/hono/templates/routes/index.ts.hbs +0 -0
  151. /package/dist/{plugins/backends → backends}/hono/templates/routes/users.ts.hbs +0 -0
  152. /package/dist/{plugins/backends → backends}/hono/templates/server.ts.hbs +0 -0
  153. /package/dist/{plugins/backends → backends}/hono/templates/tsconfig.json.hbs +0 -0
  154. /package/dist/{plugins/backends → backends}/nestjs/templates/app.controller.ts.hbs +0 -0
  155. /package/dist/{plugins/backends → backends}/nestjs/templates/app.module.ts.hbs +0 -0
  156. /package/dist/{plugins/backends → backends}/nestjs/templates/app.service.ts.hbs +0 -0
  157. /package/dist/{plugins/backends → backends}/nestjs/templates/common/decorators/current-user.decorator.ts.hbs +0 -0
  158. /package/dist/{plugins/backends → backends}/nestjs/templates/common/filters/http-exception.filter.ts.hbs +0 -0
  159. /package/dist/{plugins/backends → backends}/nestjs/templates/common/guards/auth.guard.ts.hbs +0 -0
  160. /package/dist/{plugins/backends → backends}/nestjs/templates/common/interceptors/logging.interceptor.ts.hbs +0 -0
  161. /package/dist/{plugins/backends → backends}/nestjs/templates/config/configuration.ts.hbs +0 -0
  162. /package/dist/{plugins/backends → backends}/nestjs/templates/main.ts.hbs +0 -0
  163. /package/dist/{plugins/backends → backends}/nestjs/templates/nest-cli.json.hbs +0 -0
  164. /package/dist/{plugins/backends → backends}/nestjs/templates/tsconfig.build.json.hbs +0 -0
  165. /package/dist/{plugins/backends → backends}/nestjs/templates/tsconfig.json.hbs +0 -0
  166. /package/dist/{plugins/backends → backends}/nestjs/templates/users/dto/create-user.dto.ts.hbs +0 -0
  167. /package/dist/{plugins/backends → backends}/nestjs/templates/users/dto/update-user.dto.ts.hbs +0 -0
  168. /package/dist/{plugins/backends → backends}/nestjs/templates/users/entities/user.entity.ts.hbs +0 -0
  169. /package/dist/{plugins/backends → backends}/nestjs/templates/users/users.controller.ts.hbs +0 -0
  170. /package/dist/{plugins/backends → backends}/nestjs/templates/users/users.module.ts.hbs +0 -0
  171. /package/dist/{plugins/backends → backends}/nestjs/templates/users/users.service.ts.hbs +0 -0
  172. /package/dist/{plugins/databases → databases}/mongodb/templates/connection.ts.hbs +0 -0
  173. /package/dist/{plugins/databases → databases}/mongodb/templates/env-fragment.hbs +0 -0
  174. /package/dist/{plugins/databases → databases}/mongodb/templates/health-check.ts.hbs +0 -0
  175. /package/dist/{plugins/databases → databases}/mysql/templates/connection.ts.hbs +0 -0
  176. /package/dist/{plugins/databases → databases}/mysql/templates/env-fragment.hbs +0 -0
  177. /package/dist/{plugins/databases → databases}/mysql/templates/health-check.ts.hbs +0 -0
  178. /package/dist/{plugins/databases → databases}/postgres/templates/connection.ts.hbs +0 -0
  179. /package/dist/{plugins/databases → databases}/postgres/templates/health-check.ts.hbs +0 -0
  180. /package/dist/{plugins/databases → databases}/redis/templates/connection.ts.hbs +0 -0
  181. /package/dist/{plugins/databases → databases}/redis/templates/env-fragment.hbs +0 -0
  182. /package/dist/{plugins/databases → databases}/redis/templates/health-check.ts.hbs +0 -0
  183. /package/dist/{plugins/databases → databases}/redis/templates/redis-client.ts.hbs +0 -0
  184. /package/dist/{plugins/databases → databases}/sqlite/templates/connection.ts.hbs +0 -0
  185. /package/dist/{plugins/databases → databases}/sqlite/templates/env-fragment.hbs +0 -0
  186. /package/dist/{plugins/databases → databases}/sqlite/templates/health-check.ts.hbs +0 -0
  187. /package/dist/{plugins/deployment → deployment}/aws/templates/aws-config.yml.hbs +0 -0
  188. /package/dist/{plugins/deployment → deployment}/aws/templates/buildspec.yml.hbs +0 -0
  189. /package/dist/{plugins/deployment → deployment}/eas-submit/templates/eas-submit.json.hbs +0 -0
  190. /package/dist/{plugins/deployment → deployment}/flyio/templates/fly.toml.hbs +0 -0
  191. /package/dist/{plugins/deployment → deployment}/railway/templates/railway.json.hbs +0 -0
  192. /package/dist/{plugins/deployment → deployment}/railway/templates/railway.toml.hbs +0 -0
  193. /package/dist/{plugins/deployment → deployment}/vercel/templates/vercel.json.hbs +0 -0
  194. /package/dist/{plugins/devops → devops}/docker/templates/Dockerfile.backend.hbs +0 -0
  195. /package/dist/{plugins/devops → devops}/docker/templates/Dockerfile.frontend.hbs +0 -0
  196. /package/dist/{plugins/devops → devops}/docker/templates/docker-compose.dev.yml.hbs +0 -0
  197. /package/dist/{plugins/devops → devops}/docker/templates/docker-compose.test.yml.hbs +0 -0
  198. /package/dist/{plugins/devops → devops}/docker/templates/docker-compose.yml.hbs +0 -0
  199. /package/dist/{plugins/devops → devops}/eas-build/templates/eas.json.hbs +0 -0
  200. /package/dist/{plugins/devops → devops}/fastlane/templates/Appfile.hbs +0 -0
  201. /package/dist/{plugins/devops → devops}/fastlane/templates/Fastfile.hbs +0 -0
  202. /package/dist/{plugins/devops → devops}/fastlane/templates/Matchfile.hbs +0 -0
  203. /package/dist/{plugins/devops → devops}/github-actions/templates/ci.yml.hbs +0 -0
  204. /package/dist/{plugins/devops → devops}/github-actions/templates/deploy.yml.hbs +0 -0
  205. /package/dist/{plugins/devops → devops}/github-actions/templates/mobile-build.yml.hbs +0 -0
  206. /package/dist/{plugins/devtools → devtools}/commitlint/templates/commitlint.config.js.hbs +0 -0
  207. /package/dist/{plugins/devtools → devtools}/eslint/templates/eslint.config.js.hbs +0 -0
  208. /package/dist/{plugins/devtools → devtools}/husky/templates/commit-msg.hbs +0 -0
  209. /package/dist/{plugins/devtools → devtools}/husky/templates/pre-commit.hbs +0 -0
  210. /package/dist/{plugins/forms → forms}/formik/templates/components/SampleForm.tsx.hbs +0 -0
  211. /package/dist/{plugins/forms → forms}/formik/templates/lib/validators.ts.hbs +0 -0
  212. /package/dist/{plugins/forms → forms}/react-hook-form/templates/components/FormField.tsx.hbs +0 -0
  213. /package/dist/{plugins/forms → forms}/react-hook-form/templates/components/SampleForm.tsx.hbs +0 -0
  214. /package/dist/{plugins/forms → forms}/react-hook-form/templates/hooks/useFormHelper.ts.hbs +0 -0
  215. /package/dist/{plugins/forms → forms}/react-hook-form/templates/lib/validators.ts.hbs +0 -0
  216. /package/dist/{plugins/frontend-extras → frontend-extras}/async-storage/templates/lib/storage.ts.hbs +0 -0
  217. /package/dist/{plugins/frontend-extras → frontend-extras}/date-fns/templates/lib/date-helpers.ts.hbs +0 -0
  218. /package/dist/{plugins/frontend-extras → frontend-extras}/expo-camera/templates/components/CameraView.tsx.hbs +0 -0
  219. /package/dist/{plugins/frontend-extras → frontend-extras}/expo-camera/templates/hooks/useCamera.ts.hbs +0 -0
  220. /package/dist/{plugins/frontend-extras → frontend-extras}/expo-haptics/templates/lib/haptics.ts.hbs +0 -0
  221. /package/dist/{plugins/frontend-extras → frontend-extras}/expo-image/templates/components/OptimizedImage.tsx.hbs +0 -0
  222. /package/dist/{plugins/frontend-extras → frontend-extras}/expo-location/templates/hooks/useLocation.ts.hbs +0 -0
  223. /package/dist/{plugins/frontend-extras → frontend-extras}/expo-secure-store/templates/lib/secure-storage.ts.hbs +0 -0
  224. /package/dist/{plugins/frontend-extras → frontend-extras}/i18next/templates/i18n.ts.hbs +0 -0
  225. /package/dist/{plugins/frontend-extras → frontend-extras}/i18next/templates/locales/en.json.hbs +0 -0
  226. /package/dist/{plugins/frontend-extras → frontend-extras}/i18next/templates/locales/es.json.hbs +0 -0
  227. /package/dist/{plugins/frontend-extras → frontend-extras}/lottie-rn/templates/assets/sample-animation.json.hbs +0 -0
  228. /package/dist/{plugins/frontend-extras → frontend-extras}/lottie-rn/templates/components/LottieAnimation.tsx.hbs +0 -0
  229. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-bottom-sheet/templates/components/SampleBottomSheet.tsx.hbs +0 -0
  230. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-gesture-handler/templates/components/SwipeableCard.tsx.hbs +0 -0
  231. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-maps/templates/components/MapView.tsx.hbs +0 -0
  232. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-maps/templates/screens/MapScreen.tsx.hbs +0 -0
  233. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-mmkv/templates/lib/storage.ts.hbs +0 -0
  234. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-push-notifications/templates/hooks/useNotifications.ts.hbs +0 -0
  235. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-push-notifications/templates/lib/notifications.ts.hbs +0 -0
  236. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-reanimated/templates/babel-plugin.hbs +0 -0
  237. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-reanimated/templates/components/AnimatedCard.tsx.hbs +0 -0
  238. /package/dist/{plugins/frontend-extras → frontend-extras}/react-native-svg/templates/components/SvgIcon.tsx.hbs +0 -0
  239. /package/dist/{plugins/frontend-extras → frontend-extras}/react-table/templates/components/SampleTable.tsx.hbs +0 -0
  240. /package/dist/{plugins/frontend-extras → frontend-extras}/react-table/templates/data/sample-table-data.ts.hbs +0 -0
  241. /package/dist/{plugins/frontend-extras → frontend-extras}/recharts/templates/components/SampleBarChart.tsx.hbs +0 -0
  242. /package/dist/{plugins/frontend-extras → frontend-extras}/recharts/templates/components/SampleLineChart.tsx.hbs +0 -0
  243. /package/dist/{plugins/frontend-extras → frontend-extras}/recharts/templates/data/sample-chart-data.ts.hbs +0 -0
  244. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/App.react-navigation.tsx.hbs +0 -0
  245. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(auth)/_layout.tsx.hbs +0 -0
  246. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(auth)/login.tsx.hbs +0 -0
  247. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(auth)/register.tsx.hbs +0 -0
  248. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(tabs)/_layout.tsx.hbs +0 -0
  249. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(tabs)/index.tsx.hbs +0 -0
  250. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(tabs)/profile.tsx.hbs +0 -0
  251. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/(tabs)/settings.tsx.hbs +0 -0
  252. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/+not-found.tsx.hbs +0 -0
  253. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/_layout.tsx.hbs +0 -0
  254. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app/index.tsx.hbs +0 -0
  255. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app.config.ts.hbs +0 -0
  256. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/app.json.hbs +0 -0
  257. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/babel.config.js.hbs +0 -0
  258. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/components/Avatar.tsx.hbs +0 -0
  259. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/components/Button.tsx.hbs +0 -0
  260. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/components/Card.tsx.hbs +0 -0
  261. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/components/Input.tsx.hbs +0 -0
  262. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/components/LoadingScreen.tsx.hbs +0 -0
  263. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/components/Screen.tsx.hbs +0 -0
  264. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/constants/index.ts.hbs +0 -0
  265. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/hooks/useApi.ts.hbs +0 -0
  266. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/hooks/useAppState.ts.hbs +0 -0
  267. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/hooks/useAuth.ts.hbs +0 -0
  268. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/index.ts.hbs +0 -0
  269. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/lib/config.ts.hbs +0 -0
  270. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/lib/utils.ts.hbs +0 -0
  271. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/metro.config.js.hbs +0 -0
  272. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/screens/HomeScreen.tsx.hbs +0 -0
  273. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/screens/LoginScreen.tsx.hbs +0 -0
  274. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/screens/ProfileScreen.tsx.hbs +0 -0
  275. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/screens/RegisterScreen.tsx.hbs +0 -0
  276. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/screens/SettingsScreen.tsx.hbs +0 -0
  277. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/tsconfig.json.hbs +0 -0
  278. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/types/index.ts.hbs +0 -0
  279. /package/dist/{plugins/frontends → frontends}/mobile/expo/templates/types/router.ts.hbs +0 -0
  280. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/analysis_options.yaml.hbs +0 -0
  281. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/app.dart.hbs +0 -0
  282. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/main.dart.hbs +0 -0
  283. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/models/user.dart.hbs +0 -0
  284. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/providers/app_provider.dart.hbs +0 -0
  285. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/providers/auth_provider.dart.hbs +0 -0
  286. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/router.dart.hbs +0 -0
  287. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/screens/home_screen.dart.hbs +0 -0
  288. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/screens/login_screen.dart.hbs +0 -0
  289. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/screens/profile_screen.dart.hbs +0 -0
  290. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/screens/settings_screen.dart.hbs +0 -0
  291. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/services/api_service.dart.hbs +0 -0
  292. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/services/auth_service.dart.hbs +0 -0
  293. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/services/storage_service.dart.hbs +0 -0
  294. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/theme/app_theme.dart.hbs +0 -0
  295. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/utils/constants.dart.hbs +0 -0
  296. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/widgets/app_button.dart.hbs +0 -0
  297. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/widgets/app_card.dart.hbs +0 -0
  298. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/widgets/app_input.dart.hbs +0 -0
  299. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/lib/widgets/loading_indicator.dart.hbs +0 -0
  300. /package/dist/{plugins/frontends → frontends}/mobile/flutter/templates/pubspec.yaml.hbs +0 -0
  301. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/App.tsx.hbs +0 -0
  302. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/Gemfile.hbs +0 -0
  303. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/app.json.hbs +0 -0
  304. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/babel.config.js.hbs +0 -0
  305. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/components/Avatar.tsx.hbs +0 -0
  306. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/components/Button.tsx.hbs +0 -0
  307. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/components/Card.tsx.hbs +0 -0
  308. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/components/Input.tsx.hbs +0 -0
  309. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/components/LoadingScreen.tsx.hbs +0 -0
  310. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/components/Screen.tsx.hbs +0 -0
  311. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/constants/index.ts.hbs +0 -0
  312. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/hooks/useApi.ts.hbs +0 -0
  313. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/hooks/useAuth.ts.hbs +0 -0
  314. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/index.js.hbs +0 -0
  315. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/lib/config.ts.hbs +0 -0
  316. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/lib/utils.ts.hbs +0 -0
  317. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/metro.config.js.hbs +0 -0
  318. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/navigation/RootNavigator.tsx.hbs +0 -0
  319. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/navigation/types.ts.hbs +0 -0
  320. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/react-native.config.js.hbs +0 -0
  321. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/screens/HomeScreen.tsx.hbs +0 -0
  322. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/screens/LoginScreen.tsx.hbs +0 -0
  323. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/screens/ProfileScreen.tsx.hbs +0 -0
  324. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/screens/RegisterScreen.tsx.hbs +0 -0
  325. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/screens/SettingsScreen.tsx.hbs +0 -0
  326. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/tsconfig.json.hbs +0 -0
  327. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/types/env.d.ts.hbs +0 -0
  328. /package/dist/{plugins/frontends → frontends}/mobile/react-native-cli/templates/types/index.ts.hbs +0 -0
  329. /package/dist/{plugins/frontends → frontends}/web/angular/templates/angular.json.hbs +0 -0
  330. /package/dist/{plugins/frontends → frontends}/web/angular/templates/app/app.component.html.hbs +0 -0
  331. /package/dist/{plugins/frontends → frontends}/web/angular/templates/app/app.component.ts.hbs +0 -0
  332. /package/dist/{plugins/frontends → frontends}/web/angular/templates/app/app.config.ts.hbs +0 -0
  333. /package/dist/{plugins/frontends → frontends}/web/angular/templates/app/app.routes.ts.hbs +0 -0
  334. /package/dist/{plugins/frontends → frontends}/web/angular/templates/components/loading-spinner/loading-spinner.component.html.hbs +0 -0
  335. /package/dist/{plugins/frontends → frontends}/web/angular/templates/components/loading-spinner/loading-spinner.component.ts.hbs +0 -0
  336. /package/dist/{plugins/frontends → frontends}/web/angular/templates/components/navbar/navbar.component.html.hbs +0 -0
  337. /package/dist/{plugins/frontends → frontends}/web/angular/templates/components/navbar/navbar.component.ts.hbs +0 -0
  338. /package/dist/{plugins/frontends → frontends}/web/angular/templates/environments/environment.prod.ts.hbs +0 -0
  339. /package/dist/{plugins/frontends → frontends}/web/angular/templates/environments/environment.ts.hbs +0 -0
  340. /package/dist/{plugins/frontends → frontends}/web/angular/templates/guards/auth.guard.ts.hbs +0 -0
  341. /package/dist/{plugins/frontends → frontends}/web/angular/templates/index.html.hbs +0 -0
  342. /package/dist/{plugins/frontends → frontends}/web/angular/templates/main.ts.hbs +0 -0
  343. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/about/about.component.html.hbs +0 -0
  344. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/about/about.component.ts.hbs +0 -0
  345. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/dashboard/dashboard.component.html.hbs +0 -0
  346. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/dashboard/dashboard.component.ts.hbs +0 -0
  347. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/home/home.component.html.hbs +0 -0
  348. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/home/home.component.ts.hbs +0 -0
  349. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/login/login.component.html.hbs +0 -0
  350. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/login/login.component.ts.hbs +0 -0
  351. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/not-found/not-found.component.html.hbs +0 -0
  352. /package/dist/{plugins/frontends → frontends}/web/angular/templates/pages/not-found/not-found.component.ts.hbs +0 -0
  353. /package/dist/{plugins/frontends → frontends}/web/angular/templates/services/api.service.ts.hbs +0 -0
  354. /package/dist/{plugins/frontends → frontends}/web/angular/templates/services/auth.service.ts.hbs +0 -0
  355. /package/dist/{plugins/frontends → frontends}/web/angular/templates/styles.css.hbs +0 -0
  356. /package/dist/{plugins/frontends → frontends}/web/angular/templates/tsconfig.app.json.hbs +0 -0
  357. /package/dist/{plugins/frontends → frontends}/web/angular/templates/tsconfig.json.hbs +0 -0
  358. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/about/page.tsx.hbs +0 -0
  359. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/api/health/route.ts.hbs +0 -0
  360. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/dashboard/page.tsx.hbs +0 -0
  361. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/error.tsx.hbs +0 -0
  362. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/globals.css.hbs +0 -0
  363. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/loading.tsx.hbs +0 -0
  364. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/login/page.tsx.hbs +0 -0
  365. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/not-found.tsx.hbs +0 -0
  366. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/page.tsx.hbs +0 -0
  367. /package/dist/{plugins/frontends → frontends}/web/next/templates/app/register/page.tsx.hbs +0 -0
  368. /package/dist/{plugins/frontends → frontends}/web/next/templates/components/Footer.tsx.hbs +0 -0
  369. /package/dist/{plugins/frontends → frontends}/web/next/templates/components/LoadingSpinner.tsx.hbs +0 -0
  370. /package/dist/{plugins/frontends → frontends}/web/next/templates/components/Navbar.tsx.hbs +0 -0
  371. /package/dist/{plugins/frontends → frontends}/web/next/templates/lib/config.ts.hbs +0 -0
  372. /package/dist/{plugins/frontends → frontends}/web/next/templates/lib/utils.ts.hbs +0 -0
  373. /package/dist/{plugins/frontends → frontends}/web/next/templates/middleware.ts.hbs +0 -0
  374. /package/dist/{plugins/frontends → frontends}/web/next/templates/next.config.ts.hbs +0 -0
  375. /package/dist/{plugins/frontends → frontends}/web/next/templates/tsconfig.json.hbs +0 -0
  376. /package/dist/{plugins/frontends → frontends}/web/next/templates/types/index.ts.hbs +0 -0
  377. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/App.tsx.hbs +0 -0
  378. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/components/ErrorBoundary.tsx.hbs +0 -0
  379. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/components/Footer.tsx.hbs +0 -0
  380. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/components/Layout.tsx.hbs +0 -0
  381. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/components/LoadingSpinner.tsx.hbs +0 -0
  382. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/components/Navbar.tsx.hbs +0 -0
  383. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/components/ProtectedRoute.tsx.hbs +0 -0
  384. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/hooks/useApi.ts.hbs +0 -0
  385. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/hooks/useAuth.ts.hbs +0 -0
  386. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/index.html.hbs +0 -0
  387. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/lib/config.ts.hbs +0 -0
  388. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/lib/utils.ts.hbs +0 -0
  389. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/main.tsx.hbs +0 -0
  390. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/pages/About.tsx.hbs +0 -0
  391. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/pages/Dashboard.tsx.hbs +0 -0
  392. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/pages/Home.tsx.hbs +0 -0
  393. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/pages/Login.tsx.hbs +0 -0
  394. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/pages/NotFound.tsx.hbs +0 -0
  395. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/pages/Register.tsx.hbs +0 -0
  396. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/router/index.tsx.hbs +0 -0
  397. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/tsconfig.json.hbs +0 -0
  398. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/tsconfig.node.json.hbs +0 -0
  399. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/types/index.ts.hbs +0 -0
  400. /package/dist/{plugins/frontends → frontends}/web/react-vite/templates/vite.config.ts.hbs +0 -0
  401. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/app.d.ts.hbs +0 -0
  402. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/app.html.hbs +0 -0
  403. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/components/Layout.svelte.hbs +0 -0
  404. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/components/LoadingSpinner.svelte.hbs +0 -0
  405. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/components/Navbar.svelte.hbs +0 -0
  406. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/lib/config.ts.hbs +0 -0
  407. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/lib/utils.ts.hbs +0 -0
  408. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/routes/+error.svelte.hbs +0 -0
  409. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/routes/+layout.svelte.hbs +0 -0
  410. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/routes/+page.svelte.hbs +0 -0
  411. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/routes/about/+page.svelte.hbs +0 -0
  412. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/routes/dashboard/+page.svelte.hbs +0 -0
  413. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/routes/login/+page.svelte.hbs +0 -0
  414. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/svelte.config.js.hbs +0 -0
  415. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/tsconfig.json.hbs +0 -0
  416. /package/dist/{plugins/frontends → frontends}/web/svelte/templates/vite.config.ts.hbs +0 -0
  417. /package/dist/{plugins/frontends → frontends}/web/vue/templates/App.vue.hbs +0 -0
  418. /package/dist/{plugins/frontends → frontends}/web/vue/templates/components/Layout.vue.hbs +0 -0
  419. /package/dist/{plugins/frontends → frontends}/web/vue/templates/components/LoadingSpinner.vue.hbs +0 -0
  420. /package/dist/{plugins/frontends → frontends}/web/vue/templates/components/Navbar.vue.hbs +0 -0
  421. /package/dist/{plugins/frontends → frontends}/web/vue/templates/composables/useApi.ts.hbs +0 -0
  422. /package/dist/{plugins/frontends → frontends}/web/vue/templates/composables/useAuth.ts.hbs +0 -0
  423. /package/dist/{plugins/frontends → frontends}/web/vue/templates/env.d.ts.hbs +0 -0
  424. /package/dist/{plugins/frontends → frontends}/web/vue/templates/index.html.hbs +0 -0
  425. /package/dist/{plugins/frontends → frontends}/web/vue/templates/lib/config.ts.hbs +0 -0
  426. /package/dist/{plugins/frontends → frontends}/web/vue/templates/main.ts.hbs +0 -0
  427. /package/dist/{plugins/frontends → frontends}/web/vue/templates/pages/About.vue.hbs +0 -0
  428. /package/dist/{plugins/frontends → frontends}/web/vue/templates/pages/Dashboard.vue.hbs +0 -0
  429. /package/dist/{plugins/frontends → frontends}/web/vue/templates/pages/Home.vue.hbs +0 -0
  430. /package/dist/{plugins/frontends → frontends}/web/vue/templates/pages/Login.vue.hbs +0 -0
  431. /package/dist/{plugins/frontends → frontends}/web/vue/templates/pages/NotFound.vue.hbs +0 -0
  432. /package/dist/{plugins/frontends → frontends}/web/vue/templates/router/index.ts.hbs +0 -0
  433. /package/dist/{plugins/frontends → frontends}/web/vue/templates/stores/app.ts.hbs +0 -0
  434. /package/dist/{plugins/frontends → frontends}/web/vue/templates/tsconfig.json.hbs +0 -0
  435. /package/dist/{plugins/frontends → frontends}/web/vue/templates/vite.config.ts.hbs +0 -0
  436. /package/dist/{plugins/logging → logging}/pino/templates/logger.ts.hbs +0 -0
  437. /package/dist/{plugins/logging → logging}/winston/templates/logger.ts.hbs +0 -0
  438. /package/dist/{plugins/mobile-navigation → mobile-navigation}/react-navigation/templates/RootNavigator.tsx.hbs +0 -0
  439. /package/dist/{plugins/mobile-navigation → mobile-navigation}/react-navigation/templates/TabNavigator.tsx.hbs +0 -0
  440. /package/dist/{plugins/mobile-navigation → mobile-navigation}/react-navigation/templates/linking.ts.hbs +0 -0
  441. /package/dist/{plugins/mobile-navigation → mobile-navigation}/react-navigation/templates/types.ts.hbs +0 -0
  442. /package/dist/{plugins/monitoring → monitoring}/datadog/templates/datadog.mobile.ts.hbs +0 -0
  443. /package/dist/{plugins/monitoring → monitoring}/datadog/templates/datadog.ts.hbs +0 -0
  444. /package/dist/{plugins/monitoring → monitoring}/sentry/templates/sentry.client.ts.hbs +0 -0
  445. /package/dist/{plugins/monitoring → monitoring}/sentry/templates/sentry.server.ts.hbs +0 -0
  446. /package/dist/{plugins/monitoring → monitoring}/sentry-react-native/templates/sentry.mobile.ts.hbs +0 -0
  447. /package/dist/{plugins/monitoring → monitoring}/sentry-react-native/templates/sentry.server.ts.hbs +0 -0
  448. /package/dist/{plugins/monitoring → monitoring}/sentry-react-native/templates/sentry.wrap.hbs +0 -0
  449. /package/dist/{plugins/orms → orms}/drizzle/templates/db-client.ts.hbs +0 -0
  450. /package/dist/{plugins/orms → orms}/drizzle/templates/drizzle.config.ts.hbs +0 -0
  451. /package/dist/{plugins/orms → orms}/drizzle/templates/migrate.ts.hbs +0 -0
  452. /package/dist/{plugins/orms → orms}/drizzle/templates/schema.ts.hbs +0 -0
  453. /package/dist/{plugins/orms → orms}/drizzle/templates/seed.ts.hbs +0 -0
  454. /package/dist/{plugins/orms → orms}/mongoose/templates/connection.ts.hbs +0 -0
  455. /package/dist/{plugins/orms → orms}/mongoose/templates/models/user.model.ts.hbs +0 -0
  456. /package/dist/{plugins/orms → orms}/mongoose/templates/seed.ts.hbs +0 -0
  457. /package/dist/{plugins/orms → orms}/prisma/templates/db-client.ts.hbs +0 -0
  458. /package/dist/{plugins/orms → orms}/prisma/templates/injection-module-import.hbs +0 -0
  459. /package/dist/{plugins/orms → orms}/prisma/templates/injection-module-register.hbs +0 -0
  460. /package/dist/{plugins/orms → orms}/prisma/templates/models/user.ts.hbs +0 -0
  461. /package/dist/{plugins/orms → orms}/prisma/templates/prisma.module.ts.hbs +0 -0
  462. /package/dist/{plugins/orms → orms}/prisma/templates/prisma.service.ts.hbs +0 -0
  463. /package/dist/{plugins/orms → orms}/prisma/templates/schema.prisma.hbs +0 -0
  464. /package/dist/{plugins/orms → orms}/prisma/templates/seed.ts.hbs +0 -0
  465. /package/dist/{plugins/orms → orms}/prisma/templates/services/user.service.nestjs.ts.hbs +0 -0
  466. /package/dist/{plugins/orms → orms}/prisma/templates/services/user.service.ts.hbs +0 -0
  467. /package/dist/{plugins/orms → orms}/typeorm/templates/data-source.ts.hbs +0 -0
  468. /package/dist/{plugins/orms → orms}/typeorm/templates/entities/user.entity.ts.hbs +0 -0
  469. /package/dist/{plugins/orms → orms}/typeorm/templates/seed.ts.hbs +0 -0
  470. /package/dist/{plugins/state → state}/mobx/templates/providers/StoreProvider.tsx.hbs +0 -0
  471. /package/dist/{plugins/state → state}/mobx/templates/stores/AppStore.ts.hbs +0 -0
  472. /package/dist/{plugins/state → state}/mobx/templates/stores/AuthStore.ts.hbs +0 -0
  473. /package/dist/{plugins/state → state}/mobx/templates/stores/RootStore.ts.hbs +0 -0
  474. /package/dist/{plugins/state → state}/redux-toolkit/templates/hooks.ts.hbs +0 -0
  475. /package/dist/{plugins/state → state}/redux-toolkit/templates/providers/StoreProvider.tsx.hbs +0 -0
  476. /package/dist/{plugins/state → state}/redux-toolkit/templates/slices/appSlice.ts.hbs +0 -0
  477. /package/dist/{plugins/state → state}/redux-toolkit/templates/slices/authSlice.ts.hbs +0 -0
  478. /package/dist/{plugins/state → state}/redux-toolkit/templates/store.ts.hbs +0 -0
  479. /package/dist/{plugins/state → state}/tanstack-query/templates/hooks/useAuth.ts.hbs +0 -0
  480. /package/dist/{plugins/state → state}/tanstack-query/templates/hooks/useUsers.ts.hbs +0 -0
  481. /package/dist/{plugins/state → state}/tanstack-query/templates/providers/QueryProvider.tsx.hbs +0 -0
  482. /package/dist/{plugins/state → state}/tanstack-query/templates/query-client.ts.hbs +0 -0
  483. /package/dist/{plugins/state → state}/zustand/templates/stores/useAppStore.ts.hbs +0 -0
  484. /package/dist/{plugins/state → state}/zustand/templates/stores/useAuthStore.ts.hbs +0 -0
  485. /package/dist/{plugins/styling → styling}/mobile/nativewind/templates/global.css.hbs +0 -0
  486. /package/dist/{plugins/styling → styling}/mobile/nativewind/templates/metro.config.patch.hbs +0 -0
  487. /package/dist/{plugins/styling → styling}/mobile/nativewind/templates/nativewind-env.d.ts.hbs +0 -0
  488. /package/dist/{plugins/styling → styling}/mobile/nativewind/templates/tailwind.config.js.hbs +0 -0
  489. /package/dist/{plugins/styling → styling}/mobile/rn-stylesheet/templates/styles/common.ts.hbs +0 -0
  490. /package/dist/{plugins/styling → styling}/mobile/rn-stylesheet/templates/theme.ts.hbs +0 -0
  491. /package/dist/{plugins/styling → styling}/mobile/styled-components-rn/templates/providers/ThemeProvider.tsx.hbs +0 -0
  492. /package/dist/{plugins/styling → styling}/mobile/styled-components-rn/templates/styled.d.ts.hbs +0 -0
  493. /package/dist/{plugins/styling → styling}/mobile/styled-components-rn/templates/theme.ts.hbs +0 -0
  494. /package/dist/{plugins/styling → styling}/web/css-modules/templates/globals.css.hbs +0 -0
  495. /package/dist/{plugins/styling → styling}/web/css-modules/templates/styles/Layout.module.css.hbs +0 -0
  496. /package/dist/{plugins/styling → styling}/web/css-modules/templates/styles/Navbar.module.css.hbs +0 -0
  497. /package/dist/{plugins/styling → styling}/web/styled-components/templates/global-styles.ts.hbs +0 -0
  498. /package/dist/{plugins/styling → styling}/web/styled-components/templates/providers/ThemeProvider.tsx.hbs +0 -0
  499. /package/dist/{plugins/styling → styling}/web/styled-components/templates/styled.d.ts.hbs +0 -0
  500. /package/dist/{plugins/styling → styling}/web/styled-components/templates/theme.ts.hbs +0 -0
  501. /package/dist/{plugins/styling → styling}/web/tailwind/templates/globals.css.hbs +0 -0
  502. /package/dist/{plugins/styling → styling}/web/tailwind/templates/postcss.config.js.hbs +0 -0
  503. /package/dist/{plugins/styling → styling}/web/tailwind/templates/tailwind.config.ts.hbs +0 -0
  504. /package/dist/{plugins/testing → testing}/cypress/templates/cypress.config.ts.hbs +0 -0
  505. /package/dist/{plugins/testing → testing}/cypress/templates/e2e/auth.cy.ts.hbs +0 -0
  506. /package/dist/{plugins/testing → testing}/cypress/templates/e2e/home.cy.ts.hbs +0 -0
  507. /package/dist/{plugins/testing → testing}/cypress/templates/support/commands.ts.hbs +0 -0
  508. /package/dist/{plugins/testing → testing}/cypress/templates/support/e2e.ts.hbs +0 -0
  509. /package/dist/{plugins/testing → testing}/detox/templates/e2e/auth.test.ts.hbs +0 -0
  510. /package/dist/{plugins/testing → testing}/detox/templates/e2e/home.test.ts.hbs +0 -0
  511. /package/dist/{plugins/testing → testing}/detox/templates/e2e/setup.ts.hbs +0 -0
  512. /package/dist/{plugins/testing → testing}/jest/templates/__tests__/sample.test.ts.hbs +0 -0
  513. /package/dist/{plugins/testing → testing}/jest/templates/jest.config.ts.hbs +0 -0
  514. /package/dist/{plugins/testing → testing}/jest/templates/setup.ts.hbs +0 -0
  515. /package/dist/{plugins/testing → testing}/playwright/templates/e2e/auth.spec.ts.hbs +0 -0
  516. /package/dist/{plugins/testing → testing}/playwright/templates/e2e/home.spec.ts.hbs +0 -0
  517. /package/dist/{plugins/testing → testing}/playwright/templates/playwright.config.ts.hbs +0 -0
  518. /package/dist/{plugins/testing → testing}/supertest/templates/__tests__/health.test.ts.hbs +0 -0
  519. /package/dist/{plugins/testing → testing}/supertest/templates/__tests__/users.test.ts.hbs +0 -0
  520. /package/dist/{plugins/testing → testing}/testing-library-react/templates/__tests__/Home.test.tsx.hbs +0 -0
  521. /package/dist/{plugins/testing → testing}/testing-library-react/templates/setup.ts.hbs +0 -0
  522. /package/dist/{plugins/testing → testing}/testing-library-react-native/templates/__tests__/HomeScreen.test.tsx.hbs +0 -0
  523. /package/dist/{plugins/testing → testing}/testing-library-react-native/templates/setup.ts.hbs +0 -0
  524. /package/dist/{plugins/testing → testing}/vitest/templates/__tests__/sample.test.ts.hbs +0 -0
  525. /package/dist/{plugins/testing → testing}/vitest/templates/setup.ts.hbs +0 -0
  526. /package/dist/{plugins/testing → testing}/vitest/templates/vitest.config.ts.hbs +0 -0
  527. /package/dist/{plugins/ui-library → ui-library}/ant-design/templates/providers/AntdProvider.tsx.hbs +0 -0
  528. /package/dist/{plugins/ui-library → ui-library}/ant-design/templates/theme.ts.hbs +0 -0
  529. /package/dist/{plugins/ui-library → ui-library}/mui/templates/emotion-cache.ts.hbs +0 -0
  530. /package/dist/{plugins/ui-library → ui-library}/mui/templates/providers/ThemeProvider.tsx.hbs +0 -0
  531. /package/dist/{plugins/ui-library → ui-library}/mui/templates/theme.ts.hbs +0 -0
  532. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components/ui/button.tsx.hbs +0 -0
  533. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components/ui/card.tsx.hbs +0 -0
  534. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components/ui/dialog.tsx.hbs +0 -0
  535. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components/ui/dropdown-menu.tsx.hbs +0 -0
  536. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components/ui/input.tsx.hbs +0 -0
  537. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components/ui/toast.tsx.hbs +0 -0
  538. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/components.json.hbs +0 -0
  539. /package/dist/{plugins/ui-library → ui-library}/shadcn/templates/lib/utils.ts.hbs +0 -0
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  main
4
- } from "../chunk-AOJL2555.js";
4
+ } from "../chunk-5JQGY4TN.js";
5
5
 
6
6
  // src/bin/create-fullstack-app.ts
7
7
  main().catch((error) => {
@@ -1605,18 +1605,20 @@ async function runWizard(initialName) {
1605
1605
  continue;
1606
1606
  }
1607
1607
  const phasePrompts = getPromptsForPhase(currentPhase);
1608
- const visiblePrompts = phasePrompts.filter(
1609
- (p) => isQuestionVisible(p.id, state.draft)
1610
- );
1611
- if (visiblePrompts.length === 0) {
1608
+ const hasAnyVisiblePrompt = phasePrompts.some((p) => isQuestionVisible(p.id, state.draft));
1609
+ if (!hasAnyVisiblePrompt) {
1612
1610
  state = applyNavigation(state, { type: "next" });
1613
1611
  continue;
1614
1612
  }
1615
1613
  printPhaseHeader(currentPhase);
1616
1614
  let promptIndex = 0;
1617
1615
  let phaseCompleted = true;
1618
- while (promptIndex < visiblePrompts.length) {
1619
- const prompt = visiblePrompts[promptIndex];
1616
+ while (promptIndex < phasePrompts.length) {
1617
+ const prompt = phasePrompts[promptIndex];
1618
+ if (!isQuestionVisible(prompt.id, state.draft)) {
1619
+ promptIndex++;
1620
+ continue;
1621
+ }
1620
1622
  if (state.draft[prompt.id] !== void 0 && promptIndex < state.currentPromptIndex) {
1621
1623
  promptIndex++;
1622
1624
  continue;
@@ -0,0 +1,5 @@
1
+ node_modules
2
+ npm-debug.log
3
+ dist
4
+ .git
5
+ .env
@@ -0,0 +1,14 @@
1
+ stages:
2
+ - test
3
+ - build
4
+
5
+ test:
6
+ stage: test
7
+ script:
8
+ - npm ci
9
+ - npm test
10
+
11
+ build:
12
+ stage: build
13
+ script:
14
+ - npm run build
@@ -0,0 +1,3 @@
1
+ dist
2
+ node_modules
3
+ coverage
@@ -0,0 +1,5 @@
1
+ {
2
+ "*.{js,jsx,ts,tsx,json,md}": [
3
+ "prettier --write"
4
+ ]
5
+ }
@@ -0,0 +1,4 @@
1
+ dist
2
+ node_modules
3
+ coverage
4
+ package-lock.json
@@ -0,0 +1,6 @@
1
+ {
2
+ "semi": true,
3
+ "singleQuote": true,
4
+ "trailingComma": "all",
5
+ "printWidth": 100
6
+ }
@@ -13,7 +13,7 @@ export default function RootLayout({ children }: { children: React.ReactNode })
13
13
  <html lang="en">
14
14
  <body>
15
15
  <Navbar />
16
- <main style={{ padding: '1rem 1.5rem', minHeight: '60vh' }}>{children}</main>
16
+ <main>{children}</main>
17
17
  <Footer />
18
18
  </body>
19
19
  </html>
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  main
3
- } from "./chunk-AOJL2555.js";
3
+ } from "./chunk-5JQGY4TN.js";
4
4
  export {
5
5
  main
6
6
  };
@@ -0,0 +1,7 @@
1
+ module.exports = {
2
+ testRunner: 'jest',
3
+ runnerConfig: 'e2e/jest.config.js',
4
+ apps: {},
5
+ devices: {},
6
+ configurations: {},
7
+ };
@@ -0,0 +1,4 @@
1
+ appId: com.example.app
2
+ ---
3
+ - launchApp
4
+ - assertVisible: "Home"
@@ -0,0 +1,5 @@
1
+ appId: com.example.app
2
+ ---
3
+ - launchApp
4
+ - tapOn: "Login"
5
+ - assertVisible: "Email"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dartix-software-solutions/create-fullstack-app",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "CLI tool to scaffold full-stack applications with pluggable architecture",
5
5
  "type": "module",
6
6
  "bin": {