First, install all necessary dependencies:
npm install
# or
yarn installThen, development server.
Hint: The project use concurrently.
please check packge.json scripts section.
npm start
# or
yarn startOpen http://localhost:3000 with your browser to see the result. If you want to see json server in the browser, open http://localhost:3001.
You're able to use conventional commit in this project.
git add .
# then
npm run commit
# or
yarn commitThis project have default eslint configured, you can execute it in this way:
npm run eslint .
# or
yarn eslint .