├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __mocks__ └── mocks.js ├── assets └── samples.png ├── babel.config.js ├── enzyme.js ├── jest.tsconfig.json ├── next.config.js ├── package.json ├── pages ├── ModuleCss.tsx ├── SSR.tsx ├── StyledJsx.tsx ├── _app.tsx ├── _document.tsx └── index.tsx ├── postcss.config.js ├── src ├── @types │ ├── global.d.ts │ ├── react.d.ts │ ├── styled-jsx-css.d.ts │ └── styled-jsx.d.ts ├── components │ ├── Color.css │ ├── Footer.tsx │ ├── Header.tsx │ ├── Home.css │ ├── Home.spec.tsx │ ├── Home.tsx │ ├── Layout.tsx │ └── Nav.tsx ├── constants │ └── env.ts ├── lib │ ├── index.ts │ └── timer.ts ├── redux │ ├── common.ts │ ├── index.ts │ ├── log │ │ └── index.ts │ ├── persist │ │ └── index.ts │ ├── router │ │ └── index.ts │ └── system │ │ └── index.ts └── store.ts ├── static └── favicon.ico ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/mocks.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; -------------------------------------------------------------------------------- /assets/samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/assets/samples.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/babel.config.js -------------------------------------------------------------------------------- /enzyme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/enzyme.js -------------------------------------------------------------------------------- /jest.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/jest.tsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /pages/ModuleCss.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/pages/ModuleCss.tsx -------------------------------------------------------------------------------- /pages/SSR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/pages/SSR.tsx -------------------------------------------------------------------------------- /pages/StyledJsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/pages/StyledJsx.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/@types/global.d.ts -------------------------------------------------------------------------------- /src/@types/react.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/@types/react.d.ts -------------------------------------------------------------------------------- /src/@types/styled-jsx-css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/@types/styled-jsx-css.d.ts -------------------------------------------------------------------------------- /src/@types/styled-jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/@types/styled-jsx.d.ts -------------------------------------------------------------------------------- /src/components/Color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Color.css -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Home.css -------------------------------------------------------------------------------- /src/components/Home.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Home.spec.tsx -------------------------------------------------------------------------------- /src/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Home.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/constants/env.ts -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/lib/index.ts -------------------------------------------------------------------------------- /src/lib/timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/lib/timer.ts -------------------------------------------------------------------------------- /src/redux/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/redux/common.ts -------------------------------------------------------------------------------- /src/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/redux/index.ts -------------------------------------------------------------------------------- /src/redux/log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/redux/log/index.ts -------------------------------------------------------------------------------- /src/redux/persist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/redux/persist/index.ts -------------------------------------------------------------------------------- /src/redux/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/redux/router/index.ts -------------------------------------------------------------------------------- /src/redux/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/redux/system/index.ts -------------------------------------------------------------------------------- /src/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/src/store.ts -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deptno/next.js-typescript-starter-kit/HEAD/yarn.lock --------------------------------------------------------------------------------