{"id":26162535,"url":"https://github.com/balancer/frontend-monorepo","last_synced_at":"2025-04-14T13:32:44.062Z","repository":{"id":257833148,"uuid":"858676010","full_name":"balancer/frontend-monorepo","owner":"balancer","description":"Balancer frontend apps and packages. Includes the official Balancer web application.","archived":false,"fork":false,"pushed_at":"2025-04-10T15:58:51.000Z","size":72273,"stargazers_count":20,"open_issues_count":80,"forks_count":16,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-10T16:05:34.127Z","etag":null,"topics":["dapp","defi","ethereum"],"latest_commit_sha":null,"homepage":"https://balancer.fi","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/balancer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-09-17T10:40:15.000Z","updated_at":"2025-04-10T11:46:42.000Z","dependencies_parsed_at":"2025-04-03T07:39:16.295Z","dependency_job_id":null,"html_url":"https://github.com/balancer/frontend-monorepo","commit_stats":null,"previous_names":["balancer/frontend-monorepo"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/balancer%2Ffrontend-monorepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/balancer%2Ffrontend-monorepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/balancer%2Ffrontend-monorepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/balancer%2Ffrontend-monorepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/balancer","download_url":"https://codeload.github.com/balancer/frontend-monorepo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248888588,"owners_count":21178082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dapp","defi","ethereum"],"created_at":"2025-03-11T13:55:03.814Z","updated_at":"2025-04-14T13:32:44.013Z","avatar_url":"https://github.com/balancer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Balancer frontend monorepo\n\n_This project uses `pnpm`, if you haven't already installed it you can find the documentation here:\nhttps://pnpm.io/installation_\n\n_The monorepo uses [pnpm workspaces](https://pnpm.io/workspaces) along with Turborepo to manage\nbuild orchestration, to learn more about Turborepo please see the\n[docs](https://turbo.build/repo/docs)._\n\n## What's inside?\n\nThis monorepo includes the following apps \u0026 packages:\n\n### Apps\n\n- [apps/frontend-v3](https://github.com/balancer/frontend-monorepo/tree/main/apps/frontend-v3): The\n  official web app for the Balancer protocol, hosted at [https://balancer.fi](https://balancer.fi).\n- [apps/beets-frontend-v3](https://github.com/balancer/frontend-monorepo/tree/main/apps/beets-frontend-v3):\n  The (still in development) web app for the Beets protocol.\n\n### Packages\n\n- [packages/lib](https://github.com/balancer/frontend-monorepo/tree/main/packages/lib): Shared logic\n  for all frontend-v3 apps.\n- [packages/eslint-config](https://github.com/balancer/frontend-monorepo/tree/main/packages/eslint-config):\n  eslint configurations.\n- [packages/typescript-config](https://github.com/balancer/frontend-monorepo/tree/main/packages/typescript-config):\n  Typescript config's used throughout the monorepo.\n\n## Getting started\n\nClick on the links below to see the README for each app:\n\n- [frontend-v3](https://github.com/balancer/frontend-monorepo/tree/main/apps/frontend-v3/README.md)\n- [beets-frontend-v3](https://github.com/balancer/frontend-monorepo/tree/main/apps/beets-frontend-v3/README.md)\n\n### Build\n\nTo build all apps and packages, run the following command:\n\n```\npnpm build\n```\n\n### Testing\n\nTo test all apps and packages, run:\n\n```\npnpm test:unit\n// or\npnpm test:integration\n// or\npnpm test:e2e\n```\n\n### Install a package\n\nIf you want to install a new npm package in a sub application like `frontend-v3` add the --filter\noption to your install command, e.g.:\n\n```\npnpm add some-pkg --filter=frontend-v3\n```\n\nThis filter should match the `name` attribute in the app or package package.json.\n\n## Turborepo\n\n### Remote Caching\n\nTurborepo can use a technique known as\n[Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache\nartifacts across machines, enabling you to share build caches with your team and CI/CD pipelines.\n\nBy default, Turborepo will cache locally. To enable Remote Caching you will need an account with\nVercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the\nfollowing commands:\n\n```\nnpx turbo login\n```\n\nThis will authenticate the Turborepo CLI with your\n[Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview).\n\nNext, you can link your Turborepo to your Remote Cache by running the following command from the\nroot of your Turborepo:\n\n```\nnpx turbo link\n```\n\n### Useful links\n\nLearn more about the power of Turborepo:\n\n- [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks)\n- [Caching](https://turbo.build/repo/docs/core-concepts/caching)\n- [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching)\n- [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering)\n- [Configuration Options](https://turbo.build/repo/docs/reference/configuration)\n- [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbalancer%2Ffrontend-monorepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbalancer%2Ffrontend-monorepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbalancer%2Ffrontend-monorepo/lists"}