'react-scripts' is not recognized as an internal or external command 1


It is an error about react-scripts file missing in your node_modules/ directory at the time of installation.

Check whether your react-script dependency is available or not in package.json.

If not available then add it manually via:

 

npm install --save react-scripts

Now run the project, hope it helped.