@surfyogi, You simply need to set MONGO_URL and PORT environment variables right. For you, change the start:prod npm script to something like this-
"start:prod": "cross-env NODE_ENV=production MONGO_URL=foobar PORT=80 node index.js"
Replace value of MONGO_URL with whatever your remote URL for mongo is. That should be as simple as that. I hope you know that passing proper environment variables is a thing to consider before deploying anything in production. This is just that.
Sandeep Panda
co-founder, Hashnode