### Install Project Dependencies Source: https://github.com/weirdgloop/osrs-dps-calc/blob/main/CONTRIBUTING.md Use Yarn, the preferred package manager for this project, to install all required project dependencies before running the application locally. ```Shell yarn ``` -------------------------------- ### Run Local Next.js Development Server Source: https://github.com/weirdgloop/osrs-dps-calc/blob/main/CONTRIBUTING.md Start the Next.js development server to access the application locally in your browser. The application will typically be available at http://localhost:3000. ```Shell yarn dev ``` -------------------------------- ### Build Static HTML Application Source: https://github.com/weirdgloop/osrs-dps-calc/blob/main/CONTRIBUTING.md Generate the static HTML output of the web application into the `out` directory. This build is intended for static hosting, avoiding some Next.js functionalities like `next/image`. ```Shell yarn build ``` -------------------------------- ### Linting JS/TS Code with ESLint Source: https://github.com/weirdgloop/osrs-dps-calc/blob/main/CONTRIBUTING.md To check for any issues with your JavaScript or TypeScript code against the configured ESLint rules, run this command. Most IDEs with ESLint plugins will also provide real-time warnings. ```Shell yarn lint ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.