APIs and Microservices- package.json challenge won't work

I have a Glitch app at: https://oil-fact.glitch.me/
whose code can be seen at https://glitch.com/edit/#!/oil-fact
The challenge is to edit the package.json file to add an author key.
The package.json file’s contents are:

{
  "name": "my-glitch-app",
  "version": "0.0.1",
  "description": "What am I about?",
  "scripts": {
    "start": "node server.js"
  },
  "dependencies": {
    "express": "^4.16.3"
  },
  "engines": {
    "node": "9.x"
  },
  "author": "Arcinglight",
  "license": "MIT",
  "keywords": [
    "node",
    "glitch",
    "express"
  ]
}

I don’t know what I’m doing wrong here, but the test simply fails. Can someone help?

Links are not working. @Arcinglight

Oh yeah I solved the problem. Turns out there’s an occasional issue where Glitch doesn’t import files properly. So instead of the FreecCodeCamp template the default Glitch Express app was created. I deleted the problematic app and reimported. That fixed all the issues.
I forgot I had made this post, so I forgot to answer it.

1 Like

can you explain how to re-import and from where.
Thanks .