The ESLint version required by Create React App is incompatible with the version supplied through the devDependencies field in package.json, resulting in the following error message:
There might be a problem with the project dependency tree.
It is likely not a bug in Create React App, but something you need to fix locally.
The react-scripts package provided by Create React App requires a dependency:
"eslint": "^6.6.0"
Don't try to install it manually: your package manager does it automatically.
However, a different version of eslint was detected higher up in the tree:
<PATH>/node_modules/eslint (version: 7.2.0)
Manually installing incompatible versions is known to cause hard-to-debug issues.
The ESLint version required by Create React App is incompatible with the version supplied through the
devDependencies
field inpackage.json
, resulting in the following error message: