A Next.js site to calculate how much you'd need to earn as a freelancer to match your current wage and benefits as an employee.
This repo uses PNPM. To get up and running, use the following commands.
pnpm install
pnpm dev
Open http://localhost:3000 with your browser to see the result.
To create a production version of the project, run:
pnpm build
The project uses ESLint and Prettier to lint the code. These are checked on commit.
To run all unit tests and view the coverage report:
pnpm test
To watch tests:
pnpm test:watch
The project includes Playwright for end-to-end tests. These tests are only run in CI, so they should be checked manually to save CI minutes.
pnpm run test:ui