Adding Helmet to package.json

Tell us what’s happening:
I added helmet to package.json and required as per the instructions but when I click “I’ve completed this challenge” it still says I need to add helmet.

Your code so far
{
“name”: “fcc-infosec-challenges”,
“version”: “0.0.1”,
“description”: “fcc backend boilerplate”,
“main”: “server.js”,
“scripts”: {
“start”: “node myApp.js”
},
“dependencies”: {
“express”: “^4.14.0”,
“helmet”: “^3.23.3”
},
“engines”: {
“node”: “4.4.5”
},
“keywords”: [
“node”,
“hyperdev”,
“express”,
“freecodecamp”
],
“license”: “MIT”
}

var express = require(‘express’); // Do Not Edit
var app = express(); // Do Not Edit
const helmet = require(‘helmet’);
// ----

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36 OPR/68.0.3618.173.

Challenge: Install and Require Helmet

Link to the challenge:

Hey there,

can you post a link to your code on codepen or glitch?