├── .eslintrc ├── .gitignore ├── README.md ├── config-overrides.dev.js ├── config-overrides.prod.js ├── package.json ├── public ├── favicon.ico └── index.html ├── scripts └── customized-config.js ├── src ├── App.js ├── App.scss ├── App.test.js ├── index.css ├── index.js ├── index.scss └── logo.svg └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/config-overrides.dev.js -------------------------------------------------------------------------------- /config-overrides.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/config-overrides.prod.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/customized-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/scripts/customized-config.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/index.scss -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/src/logo.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dceddia/create-react-app-customized/HEAD/yarn.lock --------------------------------------------------------------------------------