To run the application in fully accessible development mode you need to run an instance of a mock OIDC server. You can spin up a preconfigured instance with the following command.
cd oidc_mock && docker-compose up -d
Then to run the application with correct settings run:
Because of some Legacy package (or the packages that has not updated for a few years) that specify a peer dependency which is in conflict with a package you want to install
# yarn
yarn install
# npm
npm install# yarn
yarn dev
# npm
npm run dev# yarn
yarn build
# npm
npm run buildLint with ESLint
# yarn
yarn lint
# npm
npm run lint