{"id":13469716,"url":"https://github.com/dilanx/craco","last_synced_at":"2025-05-11T11:01:55.828Z","repository":{"id":37382062,"uuid":"153022221","full_name":"dilanx/craco","owner":"dilanx","description":"Create React App Configuration Override, an easy and comprehensible configuration layer for Create React App.","archived":false,"fork":false,"pushed_at":"2023-12-29T01:00:10.000Z","size":4779,"stargazers_count":7447,"open_issues_count":48,"forks_count":493,"subscribers_count":47,"default_branch":"main","last_synced_at":"2025-04-23T02:57:56.506Z","etag":null,"topics":["configuration","cra","create-react-app","customization","react"],"latest_commit_sha":null,"homepage":"https://craco.js.org","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dilanx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":["dilanx"]}},"created_at":"2018-10-14T21:49:44.000Z","updated_at":"2025-04-19T08:19:40.000Z","dependencies_parsed_at":"2024-04-09T13:10:50.776Z","dependency_job_id":"c17690d6-94f7-4c80-8228-3d26c429ee46","html_url":"https://github.com/dilanx/craco","commit_stats":{"total_commits":428,"total_committers":72,"mean_commits":5.944444444444445,"dds":0.5373831775700935,"last_synced_commit":"70a7a2a757c38dede4df80d33b498e753f313691"},"previous_names":["gsoft-inc/craco","sharegate/craco"],"tags_count":84,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dilanx%2Fcraco","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dilanx%2Fcraco/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dilanx%2Fcraco/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dilanx%2Fcraco/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dilanx","download_url":"https://codeload.github.com/dilanx/craco/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253554063,"owners_count":21926610,"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":["configuration","cra","create-react-app","customization","react"],"created_at":"2024-07-31T15:01:52.380Z","updated_at":"2025-05-11T11:01:55.754Z","avatar_url":"https://github.com/dilanx.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://craco.js.org\"\u003e\n    \u003cimg src=\"https://craco.js.org/img/craco.png\" width=\"200\" height=\"200\"\u003e\n  \u003c/a\u003e\n  \u003ch1\u003eCRACO\u003c/h1\u003e\n  \u003cp\u003e\n  \n**C**reate **R**eact **A**pp **C**onfiguration **O**verride, an easy and comprehensible configuration layer for create-react-app.\n\n**Find config docs, API docs, plugins, and example configs at [craco.js.org](https://craco.js.org)!**\n\n  \u003c/p\u003e\n\n  \u003cbr\u003e\n\n[![npm status](https://img.shields.io/npm/v/@craco/craco.svg)](https://www.npmjs.com/package/@craco/craco) [![npm downloads](https://img.shields.io/npm/dm/@craco/craco.svg)](https://www.npmjs.com/package/@craco/craco) [![npm license](https://img.shields.io/npm/l/@craco/craco?color=orange)](https://github.com/dilanx/craco/blob/main/packages/craco/LICENSE) [![GitHub stars](https://img.shields.io/github/stars/dilanx/craco?color=red)](https://github.com/dilanx/craco) [![GitHub contributors](https://img.shields.io/github/contributors/dilanx/craco?color=blueviolet)](https://github.com/dilanx/craco/graphs/contributors) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-blueviolet.svg)](https://github.com/dilanx/craco/pulls) ![Node.js CI](https://github.com/dilanx/craco/actions/workflows/run-tests.yml/badge.svg)\n\n\u003c/div\u003e\n\nGet all the benefits of [Create React App](https://create-react-app.dev) **and** customization without using 'eject' by adding a single configuration (e.g. `craco.config.js`) file at the root of your application and customize your ESLint, Babel, PostCSS configurations and many more.\n\n1. Install the latest version of the package from npm as a dev dependency:\n\n   ```\n   npm i -D @craco/craco\n   ```\n\n2. Create a CRACO configuration file in your project's root directory and [configure](https://craco.js.org/docs/):\n\n   ```diff\n     my-app\n     ├── node_modules\n   + ├── craco.config.js\n     └── package.json\n   ```\n\n3. Update the existing calls to `react-scripts` in the `scripts` section of your `package.json` to use the `craco` CLI:\n\n   ```diff title=\"package.json\"\n   \"scripts\": {\n   -  \"start\": \"react-scripts start\"\n   +  \"start\": \"craco start\"\n   -  \"build\": \"react-scripts build\"\n   +  \"build\": \"craco build\"\n   -  \"test\": \"react-scripts test\"\n   +  \"test\": \"craco test\"\n   }\n   ```\n\nVisit [craco.js.org](https://craco.js.org) to learn more.\n","funding_links":["https://github.com/sponsors/dilanx"],"categories":["TypeScript","JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdilanx%2Fcraco","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdilanx%2Fcraco","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdilanx%2Fcraco/lists"}