Starter for Wunderdog coding exercise
npm run start
= frontend production build + start production server -> http://localhost:4001npm run dev
= starts development server (backend) and Vite development server (frontend) -> http://localhost:4000 (frontend) & http://localhost:4001 (backend)npm run dev:client
= starts Vite development server (frontend) -> http://localhost:4000npm run dev:server
= start development server (backend) -> http://localhost:4001npm run clean
= cleannpm run build
= build (client/frontend, production build)npm run typecheck
= type checknpm run lint
= lint (ESLint)npm run lint:fix
= autofix linting errorsnpm run format
= check format (Prettier)npm run format:fix
= autofix formatnpm run test
= run testsnpm run test:watch
= run tests in watch mode