I am trying to install dependencies by npm install, there is need a package.json file that should include all the dependencies that need to install. I am not aware of how to create that package.json file.
These are the dependencies that I want to install by run only npm install:
1- MySQL,
2- express,
3- request,
4- md5,
5- nodemailer,
6- google-polyline.
npm init -yto create an empty package.json, thennpm i <dependency-1> <dependency-2> .... Otherwise you need to be more specific about your problem.