create-fe-boilerplate 0.1.0 → 0.3.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 (79) hide show
  1. package/bin/index.js +64 -18
  2. package/package.json +11 -3
  3. package/templates/next/ts/tailwind/axios/README.md +36 -0
  4. package/templates/next/ts/tailwind/axios/eslint.config.mjs +18 -0
  5. package/templates/next/ts/tailwind/axios/next.config.ts +7 -0
  6. package/templates/next/ts/tailwind/axios/package-lock.json +6626 -0
  7. package/templates/next/ts/tailwind/axios/package.json +27 -0
  8. package/templates/next/ts/tailwind/axios/postcss.config.mjs +7 -0
  9. package/templates/next/ts/tailwind/axios/public/file.svg +1 -0
  10. package/templates/next/ts/tailwind/axios/public/globe.svg +1 -0
  11. package/templates/next/ts/tailwind/axios/public/next.svg +1 -0
  12. package/templates/next/ts/tailwind/axios/public/vercel.svg +1 -0
  13. package/templates/next/ts/tailwind/axios/public/window.svg +1 -0
  14. package/templates/next/ts/tailwind/axios/src/api/auth.ts +10 -0
  15. package/templates/next/ts/tailwind/axios/src/api/axios.ts +17 -0
  16. package/templates/next/ts/tailwind/axios/src/app/dashboard/page.tsx +32 -0
  17. package/templates/next/ts/tailwind/axios/src/app/favicon.ico +0 -0
  18. package/templates/next/ts/tailwind/axios/src/app/globals.css +26 -0
  19. package/templates/next/ts/tailwind/axios/src/app/layout.tsx +34 -0
  20. package/templates/next/ts/tailwind/axios/src/app/login/page.tsx +71 -0
  21. package/templates/next/ts/tailwind/axios/src/app/page.tsx +5 -0
  22. package/templates/next/ts/tailwind/axios/src/app/signup/page.tsx +56 -0
  23. package/templates/next/ts/tailwind/axios/src/components/AuthGuard.tsx +35 -0
  24. package/templates/next/ts/tailwind/axios/src/components/VerifyOtpModal.tsx +58 -0
  25. package/templates/next/ts/tailwind/axios/tsconfig.json +36 -0
  26. package/templates/react/js/tailwind/axios/vite.config.js +1 -1
  27. package/templates/react/js/tailwind/rtk/README.md +73 -0
  28. package/templates/react/js/tailwind/rtk/eslint.config.js +23 -0
  29. package/templates/react/js/tailwind/rtk/index.html +13 -0
  30. package/templates/react/js/tailwind/rtk/package-lock.json +4597 -0
  31. package/templates/react/js/tailwind/rtk/package.json +37 -0
  32. package/templates/react/js/tailwind/rtk/postcss.config.js +6 -0
  33. package/templates/react/js/tailwind/rtk/public/vite.svg +1 -0
  34. package/templates/react/js/tailwind/rtk/react-ts-tailwind-axios/.env.example +1 -0
  35. package/templates/react/js/tailwind/rtk/src/App.css +0 -0
  36. package/templates/react/js/tailwind/rtk/src/App.jsx +14 -0
  37. package/templates/react/js/tailwind/rtk/src/api/axios.ts +236 -0
  38. package/templates/react/js/tailwind/rtk/src/component/auth/VerifyOtpModal.jsx +60 -0
  39. package/templates/react/js/tailwind/rtk/src/component/common/ui/Toast/Toast.js +59 -0
  40. package/templates/react/js/tailwind/rtk/src/contants/constants.js +45 -0
  41. package/templates/react/js/tailwind/rtk/src/index.css +4 -0
  42. package/templates/react/js/tailwind/rtk/src/main.jsx +14 -0
  43. package/templates/react/js/tailwind/rtk/src/pages/Dashboard.jsx +10 -0
  44. package/templates/react/js/tailwind/rtk/src/pages/Login.jsx +69 -0
  45. package/templates/react/js/tailwind/rtk/src/pages/Signup.jsx +75 -0
  46. package/templates/react/js/tailwind/rtk/src/router/AppRoutes.jsx +19 -0
  47. package/templates/react/js/tailwind/rtk/src/store/index.js +10 -0
  48. package/templates/react/js/tailwind/rtk/src/store/services/api.js +34 -0
  49. package/templates/react/js/tailwind/rtk/src/utils/utils.ts +59 -0
  50. package/templates/react/js/tailwind/rtk/tailwind.config.js +8 -0
  51. package/templates/react/js/tailwind/rtk/vite.config.js +7 -0
  52. package/templates/react/ts/tailwind/rtk/README.md +73 -0
  53. package/templates/react/ts/tailwind/rtk/eslint.config.js +23 -0
  54. package/templates/react/ts/tailwind/rtk/index.html +13 -0
  55. package/templates/react/ts/tailwind/rtk/package-lock.json +4607 -0
  56. package/templates/react/ts/tailwind/rtk/package.json +40 -0
  57. package/templates/react/ts/tailwind/rtk/postcss.config.js +6 -0
  58. package/templates/react/ts/tailwind/rtk/public/vite.svg +1 -0
  59. package/templates/react/ts/tailwind/rtk/react-ts-tailwind-axios/.env.example +1 -0
  60. package/templates/react/ts/tailwind/rtk/src/App.css +0 -0
  61. package/templates/react/ts/tailwind/rtk/src/App.tsx +14 -0
  62. package/templates/react/ts/tailwind/rtk/src/api/axios.ts +236 -0
  63. package/templates/react/ts/tailwind/rtk/src/component/auth/VerifyOtpModal.tsx +70 -0
  64. package/templates/react/ts/tailwind/rtk/src/component/common/ui/Toast/Toast.ts +58 -0
  65. package/templates/react/ts/tailwind/rtk/src/contants/constants.ts +45 -0
  66. package/templates/react/ts/tailwind/rtk/src/index.css +4 -0
  67. package/templates/react/ts/tailwind/rtk/src/main.tsx +13 -0
  68. package/templates/react/ts/tailwind/rtk/src/pages/Dashboard.tsx +10 -0
  69. package/templates/react/ts/tailwind/rtk/src/pages/Login.tsx +69 -0
  70. package/templates/react/ts/tailwind/rtk/src/pages/Signup.tsx +75 -0
  71. package/templates/react/ts/tailwind/rtk/src/router/AppRoutes.tsx +19 -0
  72. package/templates/react/ts/tailwind/rtk/src/store/index.ts +13 -0
  73. package/templates/react/ts/tailwind/rtk/src/store/services/api.ts +37 -0
  74. package/templates/react/ts/tailwind/rtk/src/utils/utils.ts +59 -0
  75. package/templates/react/ts/tailwind/rtk/tailwind.config.js +8 -0
  76. package/templates/react/ts/tailwind/rtk/tsconfig.app.json +28 -0
  77. package/templates/react/ts/tailwind/rtk/tsconfig.json +12 -0
  78. package/templates/react/ts/tailwind/rtk/tsconfig.node.json +26 -0
  79. package/templates/react/ts/tailwind/rtk/vite.config.ts +7 -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.