A web application for tracking and analysing ACCC merger reviews. Provides an interface for legal advisors and the public to monitor merger progress, view statistics, and analyse trends.
Live site: mergers.fyi
- Dashboard: Overview with key statistics and visualisations
- Merger list: Searchable and filterable list of all mergers
- Detailed views: Comprehensive information for each merger including timeline and documents
- Timeline: Chronological display of all events
- Industry analysis: ANZSIC classifications and merger counts
- Upcoming events: Consultation and determination deadlines
- Commentary: Analysis and notes on mergers reviewed by the ACCC
- React with React Router
- Tailwind CSS
- Chart.js for visualisations
- Vite for builds
- Cloudflare Pages for hosting
cd merger-tracker/frontend
npm install
npm run devThe dev server runs at http://localhost:5173 and serves static JSON from public/data/.
merger-tracker/frontend/
├── public/
│ └── data/ # Static JSON data files
├── src/
│ ├── components/ # Reusable UI components
│ ├── pages/ # Route components
│ ├── data/ # Static data (public holidays)
│ └── utils/ # Helper functions (dates, etc.)
└── package.json
Data is generated by Python scripts in the repository root — see DEPLOYMENT.md for details.
MIT