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.
- package/bin/index.js +64 -18
- package/package.json +11 -3
- package/templates/next/ts/tailwind/axios/README.md +36 -0
- package/templates/next/ts/tailwind/axios/eslint.config.mjs +18 -0
- package/templates/next/ts/tailwind/axios/next.config.ts +7 -0
- package/templates/next/ts/tailwind/axios/package-lock.json +6626 -0
- package/templates/next/ts/tailwind/axios/package.json +27 -0
- package/templates/next/ts/tailwind/axios/postcss.config.mjs +7 -0
- package/templates/next/ts/tailwind/axios/public/file.svg +1 -0
- package/templates/next/ts/tailwind/axios/public/globe.svg +1 -0
- package/templates/next/ts/tailwind/axios/public/next.svg +1 -0
- package/templates/next/ts/tailwind/axios/public/vercel.svg +1 -0
- package/templates/next/ts/tailwind/axios/public/window.svg +1 -0
- package/templates/next/ts/tailwind/axios/src/api/auth.ts +10 -0
- package/templates/next/ts/tailwind/axios/src/api/axios.ts +17 -0
- package/templates/next/ts/tailwind/axios/src/app/dashboard/page.tsx +32 -0
- package/templates/next/ts/tailwind/axios/src/app/favicon.ico +0 -0
- package/templates/next/ts/tailwind/axios/src/app/globals.css +26 -0
- package/templates/next/ts/tailwind/axios/src/app/layout.tsx +34 -0
- package/templates/next/ts/tailwind/axios/src/app/login/page.tsx +71 -0
- package/templates/next/ts/tailwind/axios/src/app/page.tsx +5 -0
- package/templates/next/ts/tailwind/axios/src/app/signup/page.tsx +56 -0
- package/templates/next/ts/tailwind/axios/src/components/AuthGuard.tsx +35 -0
- package/templates/next/ts/tailwind/axios/src/components/VerifyOtpModal.tsx +58 -0
- package/templates/next/ts/tailwind/axios/tsconfig.json +36 -0
- package/templates/react/js/tailwind/axios/vite.config.js +1 -1
- package/templates/react/js/tailwind/rtk/README.md +73 -0
- package/templates/react/js/tailwind/rtk/eslint.config.js +23 -0
- package/templates/react/js/tailwind/rtk/index.html +13 -0
- package/templates/react/js/tailwind/rtk/package-lock.json +4597 -0
- package/templates/react/js/tailwind/rtk/package.json +37 -0
- package/templates/react/js/tailwind/rtk/postcss.config.js +6 -0
- package/templates/react/js/tailwind/rtk/public/vite.svg +1 -0
- package/templates/react/js/tailwind/rtk/react-ts-tailwind-axios/.env.example +1 -0
- package/templates/react/js/tailwind/rtk/src/App.css +0 -0
- package/templates/react/js/tailwind/rtk/src/App.jsx +14 -0
- package/templates/react/js/tailwind/rtk/src/api/axios.ts +236 -0
- package/templates/react/js/tailwind/rtk/src/component/auth/VerifyOtpModal.jsx +60 -0
- package/templates/react/js/tailwind/rtk/src/component/common/ui/Toast/Toast.js +59 -0
- package/templates/react/js/tailwind/rtk/src/contants/constants.js +45 -0
- package/templates/react/js/tailwind/rtk/src/index.css +4 -0
- package/templates/react/js/tailwind/rtk/src/main.jsx +14 -0
- package/templates/react/js/tailwind/rtk/src/pages/Dashboard.jsx +10 -0
- package/templates/react/js/tailwind/rtk/src/pages/Login.jsx +69 -0
- package/templates/react/js/tailwind/rtk/src/pages/Signup.jsx +75 -0
- package/templates/react/js/tailwind/rtk/src/router/AppRoutes.jsx +19 -0
- package/templates/react/js/tailwind/rtk/src/store/index.js +10 -0
- package/templates/react/js/tailwind/rtk/src/store/services/api.js +34 -0
- package/templates/react/js/tailwind/rtk/src/utils/utils.ts +59 -0
- package/templates/react/js/tailwind/rtk/tailwind.config.js +8 -0
- package/templates/react/js/tailwind/rtk/vite.config.js +7 -0
- package/templates/react/ts/tailwind/rtk/README.md +73 -0
- package/templates/react/ts/tailwind/rtk/eslint.config.js +23 -0
- package/templates/react/ts/tailwind/rtk/index.html +13 -0
- package/templates/react/ts/tailwind/rtk/package-lock.json +4607 -0
- package/templates/react/ts/tailwind/rtk/package.json +40 -0
- package/templates/react/ts/tailwind/rtk/postcss.config.js +6 -0
- package/templates/react/ts/tailwind/rtk/public/vite.svg +1 -0
- package/templates/react/ts/tailwind/rtk/react-ts-tailwind-axios/.env.example +1 -0
- package/templates/react/ts/tailwind/rtk/src/App.css +0 -0
- package/templates/react/ts/tailwind/rtk/src/App.tsx +14 -0
- package/templates/react/ts/tailwind/rtk/src/api/axios.ts +236 -0
- package/templates/react/ts/tailwind/rtk/src/component/auth/VerifyOtpModal.tsx +70 -0
- package/templates/react/ts/tailwind/rtk/src/component/common/ui/Toast/Toast.ts +58 -0
- package/templates/react/ts/tailwind/rtk/src/contants/constants.ts +45 -0
- package/templates/react/ts/tailwind/rtk/src/index.css +4 -0
- package/templates/react/ts/tailwind/rtk/src/main.tsx +13 -0
- package/templates/react/ts/tailwind/rtk/src/pages/Dashboard.tsx +10 -0
- package/templates/react/ts/tailwind/rtk/src/pages/Login.tsx +69 -0
- package/templates/react/ts/tailwind/rtk/src/pages/Signup.tsx +75 -0
- package/templates/react/ts/tailwind/rtk/src/router/AppRoutes.tsx +19 -0
- package/templates/react/ts/tailwind/rtk/src/store/index.ts +13 -0
- package/templates/react/ts/tailwind/rtk/src/store/services/api.ts +37 -0
- package/templates/react/ts/tailwind/rtk/src/utils/utils.ts +59 -0
- package/templates/react/ts/tailwind/rtk/tailwind.config.js +8 -0
- package/templates/react/ts/tailwind/rtk/tsconfig.app.json +28 -0
- package/templates/react/ts/tailwind/rtk/tsconfig.json +12 -0
- package/templates/react/ts/tailwind/rtk/tsconfig.node.json +26 -0
- 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.