This web app uses the reusable @zoo/animals package for animal logic and feeding rules.
Animals from the @zoo/animals package are included automatically. You can also add custom animals to the web app by placing their modules in src/animals/. Any animal module in this folder (e.g., src/animals/elephant.ts) will be included in the app alongside the package animals.
npm installTo start the development server and run the web app locally:
npm run devThis will launch the app at the local address shown in your terminal (usually http://localhost:5173/).
To build the app for production:
npm run buildTo preview the production build locally:
npm run preview