Having problem with express.js

{
“//1”: “describes your app and its dependencies”,
“//2”: “https://docs.npmjs.com/files/package.json”,
“//3”: “updating this file will download and update your packages”,
“name”: “my-glitch-app”,//“the-society”,
“version”: “0.0.2”,
“description”: “What am I about?”,//“A Private Forum.”,
“main”: “server.js”,
“scripts”: {
“start”: “node server.js”
},
“dependencies”: {
“express”: “^4.16.2”,
“password-hash”: “^1.2.2”
},
“engines”: {
“node”: “8.x”
},
“repository”: {
“url”: “https://glitch.com/edit/#!/hello-express
},
“license”: “MIT”,
“keywords”: [
“node”,
“glitch”,
“express”
]
}

Above is my package.json file.
my app logs error: express not found
what should i do? it was working fine this morning but suddenly it stopped working.

You can’t put code comments like ,//“the-society”, in your package.json as it’s not valid JSON.