Ramya:
Your distilled installation instructions in the readme.md file are as follows.
- npm install
- npm i webpack-cli
- ng server
The first line installs dependant packages, the second installs angular and the third compiles and runs the application.
The issue is that line two installs the current version of angular which is now version 7. Your application was created with version 5.6. If you replace line 2 with the below it now works.
- npm install -g webpack/cli@1.5.6
You may not need the -g as this does a global install, but in my case this is fine as this is the only angular app I am working with. Also it looks like you need to replace the hyphen with a slash.
May I suggest you update your installation instructions so it works for the next person.
Thanks,
Gordon Brown