├── .czrc ├── .env.example ├── .env.test ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit ├── pre-push └── prepare-commit-msg ├── .lintstagedrc.js ├── .prettierrc ├── LICENSE ├── commitlint.config.js ├── jest.config.js ├── jest.setup.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── readme.md ├── src ├── components │ └── main-heading │ │ ├── __snapshots__ │ │ └── main-heading.spec.tsx.snap │ │ ├── main-heading.spec.tsx │ │ └── main-heading.tsx ├── config │ └── index.ts ├── pages │ ├── _app.tsx │ └── index.tsx └── styles │ └── tailwind.css ├── tailwind.config.js ├── tsconfig.jest.json ├── tsconfig.json └── yarn.lock /.czrc: -------------------------------------------------------------------------------- 1 | { 2 | "path": "./node_modules/cz-conventional-changelog" 3 | } 4 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_APP_NAME="Starter Project" 2 | -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_APP_NAME="Starter Project" 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | *.css 4 | .*.js 5 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run test 5 | -------------------------------------------------------------------------------- /.husky/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/.husky/prepare-commit-msg -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: ['@commitlint/config-conventional'], 3 | } 4 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/jest.setup.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/postcss.config.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/readme.md -------------------------------------------------------------------------------- /src/components/main-heading/__snapshots__/main-heading.spec.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/components/main-heading/__snapshots__/main-heading.spec.tsx.snap -------------------------------------------------------------------------------- /src/components/main-heading/main-heading.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/components/main-heading/main-heading.spec.tsx -------------------------------------------------------------------------------- /src/components/main-heading/main-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/components/main-heading/main-heading.tsx -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/src/styles/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.jest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/tsconfig.jest.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekbhardwaj/tailwind-react-next.js-typescript-eslint-jest-starter/HEAD/yarn.lock --------------------------------------------------------------------------------