- NextJS
- Typescript
- Axios (Fetching)
- ESLint (Code Pattern)
- Prettier (Formatter)
- Husky (Pre-commit)
- Jest (Unit/Integration Test)
- Cypress (Test E2E)
git clone https://github.com/RodrigoRVSN/next_ts_boilerplate.gityarnto install dependenciesyarn devto run the appyarn testto run testsyarn lintto run lintersyarn cy:runto run cypress in terminalyarn cy:opento run cypress in browser
Inside /.vscode/settings.json we set prettier as the default formatter, and also set editor.codeActionsOnSave to run:
- Lint:
"source.fixAll.eslint" - Format:
"source.fixAll.format"
Using husky we can check all of our style standards to make sure our git commits are up to par. Check those checks out at .husky/pre-commit