Project.json dependencies

Tell us what’s happening:
Describe your issue in detail here.

I have been unable to submit my task after adding this:
“name” : “moment”,
“version” : “2.14.0”,
into my code. i was required to “Add version “2.14.0” of the “moment” package to the dependencies field of your package.json file.”, and i cant seem to find my way around it

Your project link(s)

solution: https://replit.com/@sundayolubode/boilerplate-npm-2

Your browser information:

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

Challenge: Expand Your Project with External Packages from npm

Link to the challenge:

All dependencies must be added inside dependencies object

{
    name: "name of your project module",
    version: "version of your project module",
    dependencies: {
        "<package_name>": "<package_version>"
    }
}

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