### Installing Project Dependencies (npm) Source: https://github.com/hans7681/glovy-ticket-book/blob/main/frontend/README.md Installs all required project dependencies listed in the `package.json` file. This command should be run after cloning the repository to set up the development environment. ```sh npm install ``` -------------------------------- ### Starting Development Server (npm) Source: https://github.com/hans7681/glovy-ticket-book/blob/main/frontend/README.md Starts the development server with hot-reloading enabled. This allows for real-time compilation and updates during development, making it efficient for testing changes. ```sh npm run dev ``` -------------------------------- ### Building for Production (npm) Source: https://github.com/hans7681/glovy-ticket-book/blob/main/frontend/README.md Compiles, type-checks, and minifies the project for production deployment. This command generates optimized static assets ready for hosting. ```sh npm run build ``` -------------------------------- ### Linting Project Code (ESLint) Source: https://github.com/hans7681/glovy-ticket-book/blob/main/frontend/README.md Runs ESLint to check for code quality issues and style consistency. This helps maintain a clean and consistent codebase across the project. ```sh npm run lint ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.