├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .storybook ├── main.js └── preview.js ├── LICENSE.md ├── README.md ├── components ├── BaseComponent │ ├── BaseComponent.mocks.ts │ ├── BaseComponent.stories.tsx │ └── BaseComponent.tsx └── index.ts ├── cypress.config.ts ├── cypress ├── e2e │ └── example.cy.ts ├── fixtures │ └── example.json └── support │ ├── commands.ts │ └── e2e.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── api │ └── hello.ts └── index.tsx ├── postcss.config.js ├── public ├── favicon.ico ├── next.svg ├── thirteen.svg └── vercel.svg ├── redux ├── slices │ └── ExampleSlice.ts └── store.ts ├── stories ├── Introduction.stories.mdx └── assets │ ├── code-brackets.svg │ ├── colors.svg │ ├── comments.svg │ ├── direction.svg │ ├── flow.svg │ ├── plugin.svg │ ├── repo.svg │ └── stackalt.svg ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/README.md -------------------------------------------------------------------------------- /components/BaseComponent/BaseComponent.mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/components/BaseComponent/BaseComponent.mocks.ts -------------------------------------------------------------------------------- /components/BaseComponent/BaseComponent.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/components/BaseComponent/BaseComponent.stories.tsx -------------------------------------------------------------------------------- /components/BaseComponent/BaseComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/components/BaseComponent/BaseComponent.tsx -------------------------------------------------------------------------------- /components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/components/index.ts -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/example.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/cypress/e2e/example.cy.ts -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/cypress/support/e2e.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /redux/slices/ExampleSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/redux/slices/ExampleSlice.ts -------------------------------------------------------------------------------- /redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/redux/store.ts -------------------------------------------------------------------------------- /stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/colors.svg -------------------------------------------------------------------------------- /stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/comments.svg -------------------------------------------------------------------------------- /stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/direction.svg -------------------------------------------------------------------------------- /stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/flow.svg -------------------------------------------------------------------------------- /stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/plugin.svg -------------------------------------------------------------------------------- /stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/repo.svg -------------------------------------------------------------------------------- /stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SerhatPolat/large-scale-frontend-template/HEAD/yarn.lock --------------------------------------------------------------------------------