├── .babelrc ├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── .node-version ├── .prettierrc.js ├── README.md ├── components ├── atoms │ └── Button.tsx ├── molecules │ ├── Header.tsx │ └── Menu.tsx ├── organisms │ ├── App.tsx │ └── Dynamic.tsx └── utils │ └── Layout.tsx ├── constants └── normalize.ts ├── containers └── App.ts ├── jest.config.js ├── next-env.d.ts ├── next.config.js ├── now.json ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── about.tsx ├── dynamicImport.tsx ├── index.tsx └── lazyLoad.tsx ├── reducers ├── __snapshots__ │ └── app.test.ts.snap ├── app.test.ts ├── app.ts ├── index.test.ts └── index.ts ├── renovate.json ├── store └── configureStore.ts ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/.babelrc -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .next 3 | *-error.log 4 | coverage/ 5 | .now 6 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 12.16.3 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/README.md -------------------------------------------------------------------------------- /components/atoms/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/components/atoms/Button.tsx -------------------------------------------------------------------------------- /components/molecules/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/components/molecules/Header.tsx -------------------------------------------------------------------------------- /components/molecules/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/components/molecules/Menu.tsx -------------------------------------------------------------------------------- /components/organisms/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/components/organisms/App.tsx -------------------------------------------------------------------------------- /components/organisms/Dynamic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/components/organisms/Dynamic.tsx -------------------------------------------------------------------------------- /components/utils/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/components/utils/Layout.tsx -------------------------------------------------------------------------------- /constants/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/constants/normalize.ts -------------------------------------------------------------------------------- /containers/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/containers/App.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/jest.config.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/pages/about.tsx -------------------------------------------------------------------------------- /pages/dynamicImport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/pages/dynamicImport.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/lazyLoad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/pages/lazyLoad.tsx -------------------------------------------------------------------------------- /reducers/__snapshots__/app.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/reducers/__snapshots__/app.test.ts.snap -------------------------------------------------------------------------------- /reducers/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/reducers/app.test.ts -------------------------------------------------------------------------------- /reducers/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/reducers/app.ts -------------------------------------------------------------------------------- /reducers/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/reducers/index.test.ts -------------------------------------------------------------------------------- /reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/reducers/index.ts -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@locol23"] 3 | } 4 | -------------------------------------------------------------------------------- /store/configureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/store/configureStore.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/locol23/next-redux-typescript-starter/HEAD/yarn.lock --------------------------------------------------------------------------------