├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── feature_request.yml │ └── other.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── format.yml │ └── release.yml ├── .gitignore ├── .gitpod.yml ├── .husky ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── .prettierrc.json ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SNIPPETS.md ├── commitlint.config.js ├── install.sh ├── package.json ├── renovate.json ├── src ├── automation │ ├── data │ │ ├── constants.js │ │ └── readmeConstants.js │ ├── package.json │ ├── scripts │ │ └── generateReadme.js │ ├── utils │ │ └── markdownTable.js │ └── yarn.lock └── extension │ ├── .gitattributes │ ├── .gitignore │ ├── .gitpod.yml │ ├── .vscode │ └── launch.json │ ├── .vscodeignore │ ├── LICENSE │ ├── README.md │ ├── logo.png │ ├── package.json │ ├── snippets │ ├── next-javascript.json │ ├── next-typescript.json │ ├── react-javascript.json │ └── react-typescript.json │ └── yarn.lock └── yarn.lock /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.github/ISSUE_TEMPLATE/other.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit $1 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn pre-commit 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | */node_modules 2 | */husky -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/README.md -------------------------------------------------------------------------------- /SNIPPETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/SNIPPETS.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:base"] 3 | } 4 | -------------------------------------------------------------------------------- /src/automation/data/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/automation/data/constants.js -------------------------------------------------------------------------------- /src/automation/data/readmeConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/automation/data/readmeConstants.js -------------------------------------------------------------------------------- /src/automation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/automation/package.json -------------------------------------------------------------------------------- /src/automation/scripts/generateReadme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/automation/scripts/generateReadme.js -------------------------------------------------------------------------------- /src/automation/utils/markdownTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/automation/utils/markdownTable.js -------------------------------------------------------------------------------- /src/automation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/automation/yarn.lock -------------------------------------------------------------------------------- /src/extension/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/.gitattributes -------------------------------------------------------------------------------- /src/extension/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix -------------------------------------------------------------------------------- /src/extension/.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/.gitpod.yml -------------------------------------------------------------------------------- /src/extension/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/.vscode/launch.json -------------------------------------------------------------------------------- /src/extension/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/.vscodeignore -------------------------------------------------------------------------------- /src/extension/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/LICENSE -------------------------------------------------------------------------------- /src/extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/README.md -------------------------------------------------------------------------------- /src/extension/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/logo.png -------------------------------------------------------------------------------- /src/extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/package.json -------------------------------------------------------------------------------- /src/extension/snippets/next-javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/snippets/next-javascript.json -------------------------------------------------------------------------------- /src/extension/snippets/next-typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/snippets/next-typescript.json -------------------------------------------------------------------------------- /src/extension/snippets/react-javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/snippets/react-javascript.json -------------------------------------------------------------------------------- /src/extension/snippets/react-typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/snippets/react-typescript.json -------------------------------------------------------------------------------- /src/extension/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/src/extension/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avneesh0612/react-nextjs-snippets/HEAD/yarn.lock --------------------------------------------------------------------------------