Modify your folder structure so you have something like
your_project
| frontend ( your create-react-app project )
| backend ( your backend (express?) project )
In the your_project folder, do an npm init. Then, $ npm i concurrently so you can run your backend and the react dev server... concurrently.
Modify the package.json in your_project to have something like this: