Opinated boilerplate using Feature Sliced Design and other patterns for a robust and scalable project structure.
pnpm install
pnpm dev
pnpm build
Run Unit Tests with Vitest
pnpm test:unit
Run End-to-End Tests with Playwright
# Install browsers for the first run
pnpm exec playwright install
# When testing on CI, must build the project first
pnpm build
# Runs the end-to-end tests
pnpm test:e2e
Lint with ESLint
pnpm lint