Problem with starting the project

@xArczi00 That sounds familiar! All you need to do is move the node statement in your package.json file out of the dependencies, and into the engines section, like this:

"engines": {
"node": "^12.8.1" //whatever version
}

This post should explain what’s going on and how to fix it in more detail:

As @cori outlines in the above post, what you’re seeing is probably a warning and not actually an error, so I don’t think it should be breaking your code – if your project still isn’t starting after you’ve changed the package.json and the message has vanished (or if you have any trouble changing the package.json ) let me know and we’ll keep debugging! Good luck!