cd app
npm init
{
"type": "module",
"main": "index.js",
"scripts": {
"test": "nodemon --watch ./ --env-file=.env ./index.js",
"start": "pm2 start index.js --name carpool --node-args='--env-file=.env'"
},
"dependencies": {
"npm": "latest",
"pm2": "latest",
"nodemon": "latest"
}
}
npm install