Although I checked other posts on the net and Stackoverflow I couldn't figure it out. I am tryin to deploy my app to Heroku. However, I have been facing an issue about parsing json file. Json seems proper and applied these suggestions like 'heroku' does not appear to be a git repository
Or heroku error: Expected another key-value pair
Or Heroku app won't deploy parse error: Expected another key-value pair at line 10, column 3 node.js
You can see my jason as:
{
"name": "signup",
"version": "1.0.0",
"description": "Newsletter mailing",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ng build",
"heroku-postbuild": "ng build --prod"
},
"dependencies": {
"@mailchimp/mailchimp_marketing": "^3.0.66",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"hyperline": "^1.2.0",
"nodemon": "^2.0.12"
},
"author": "",
"license": "ISC",
"engines": {
"node": "14.15.3",
"npm": "6.14.9"
},
}
Also you can see error as: Hyperterminal screen after git push heroku commad
What do you think? Thank you