"scripts": {
"start": "node index.js",
"heroku-postbuild": "yarn install"
},
"quotes": [
"error",
"single"
],
app.get('/api/v1/bitcoin', function (req, res) {
//запрос coinmarketcap
.then(response => res.json(response))
.catch(() => res.send("Ops something went wrong"))
})