I cannot pass exercise about Expand Your Project with External Packages from npm

Tell us what’s happening:
Currently I tried to Expand Your Project with External Packages from npm, then run npm start, try to add dependencies code version 1.1.0 but I click to complete this challenge does not pass

Here package.json code file:

{
    "name": "fcc-learn-npm-package-json",
    "author": "quanganh2001",
    "description": "Testing run project freecodecamp to redirect link",
    "keywords": [ "freecodecamp", "nodejs", "package json "],
    "license": "MIT",
    "version": "1.2.0",
    "dependencies": {
        "express": "^4.14.0",
        "@freecodecamp/example": "^1.1.0"
    }
    "main": "server.js",
    "scripts": {
        "start": "node server.js"
    },
    "engines": {
        "node": "8.11.2"
    },
    "repository": {
        "type": "git",
        "url": "https://idontknow/todo.git"
    }
}

Your project link(s)

solution: boilerplate-npm - Replit

My screenshot:

Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36

Challenge: Managing Packages with NPM - Expand Your Project with External Packages from npm

Link to the challenge:

The instructions ask you to specify : "1.1.0" for the @freecodecamp/example package. You specified something different for that package.

Finally I added comma and I passed this challenge. Thank you so much!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.