On a MEAN course project I cannot run it because I am getting the below error:
$ npm run start
> mean-course@0.0.0 start
> ng serve
Node packages may not be installed. Try installing with 'npm install'.
Error: Could not find the '@angular-devkit/build-angular:dev-server' builder's node package.
So I go into the package.json file and under "devDependencies" add the line:
"@angular-devkit/build-angular:dev-server": "15.1.6",
Then I try to run npm run start and I get the error below stating that the dependency is still not installed:
> mean-course@0.0.0 start
> ng serve
Node packages may not be installed. Try installing with 'npm install'.
Error: Could not find the '@angular-devkit/build-angular:dev-server' builder's node package.
Anybody have the same problem or know a solution? Any help would be appreciated thank you!