https://github.com/rodrigorvsn/third-mind
₿ Site to study about blockchain
https://github.com/rodrigorvsn/third-mind
blockchain moralis next-themes nextjs nextui react-iconly react-moralis typescript web3
Last synced: about 2 months ago
JSON representation
₿ Site to study about blockchain
- Host: GitHub
- URL: https://github.com/rodrigorvsn/third-mind
- Owner: RodrigoRVSN
- Created: 2022-01-28T09:53:21.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-12T19:47:55.000Z (over 4 years ago)
- Last Synced: 2025-09-20T13:49:50.738Z (9 months ago)
- Topics: blockchain, moralis, next-themes, nextjs, nextui, react-iconly, react-moralis, typescript, web3
- Language: TypeScript
- Homepage:
- Size: 114 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 👕 Next.JS Template with Linter
___
## 🔨 Tools:
- NextJS
- Typescript
- Axios (Fetching)
- ESLint (Code Pattern)
- Prettier (Formatter)
- Husky (Pre-commit)
- Jest (Unit/Integration Test)
- Cypress (Test E2E)
___
## 🤺 How to use:
- `git clone https://github.com/RodrigoRVSN/next_ts_boilerplate.git`
- `yarn` to install dependencies
- `yarn dev` to run the app
- `yarn test` to run tests
- `yarn lint` to run linters
- `yarn cy:run` to run cypress in terminal
- `yarn cy:open` to run cypress in browser
___
## 🤖 Auto-formatting on save:
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"`
___
## ✅ Checking standards pre-commit:
Using [husky](https://www.npmjs.com/package/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`](.husky/pre-commit)