- Vue 3
- Vite
- Vite Router for routing
- Vite Dev Tools
- Vitest for unit tests
- Cypress for e2e testing
- Eslint and Prettier to watch and format
yarn installyarn devyarn buildRun Unit Tests with Vitest
yarn test:unitRun End-to-End Tests with Cypress
yarn test:e2e:devThis runs the end-to-end tests against the Vite development server. It is much faster than the production build.
But it's still recommended to test the production build with test:e2e before deploying (e.g. in CI environments):
yarn build
yarn run test:e2eLint with ESLint
yarn lint