I am currently learning React. I have done:
npm i -g create-react-app(sucessful)create-react-app react-app(sucessful)cd react-appnpm start(error above)
Output:
npm start \Git\cmd was unexpected .at this time.
npm ERR! code ELIFECYCLE
So, what I have tried by searching online:
npm cache clean --force- delete node_modules
- delete package-lock.json
npm run clear- npm install
None solved. I have read that I should not installed globally but now that it is already instaled (?) can I rollback? I can't run npm i g create-react-app again. Thank you
Edit: Added screenshot https://i.ibb.co/mNKLskX/Capturar.png
{ "name": "react-app", "version": "0.1.0", "private": true, "dependencies": { "react": "^16.6.3", "react-dom": "^16.6.3", "react-scripts": "2.1.1" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": "react-app" }, "browserslist": [ ">0.2%", "not dead", "not ie <= 11", "not op_mini all" ] }- António F. Aires