To ignore incompatible engine "node" error on installing npm dependencies with yarn, we remove the engines
entry from the package.json file.
We can also run
yarn config set ignore-engines true
to ignore the engines entry in package.json once by setting the ignore-engines
setting to true
.