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

Tell us what’s happening:
I’ve done with practise but still taking below result. I couldn’t figure it out what happened. Any help, appreciated. Thanks in advance.
// running tests
“dependencies” should include “moment”
“moment” version should be “2.14.0”
// tests completed

Your project link(s)

solution: https://replit.com/@doganirmak/boilerplate-npm

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

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

Link to the challenge:

Originally, the package.json had a section for dependencies like:

	"dependencies": {
		"express": "^4.14.0"
	},

Why did you delete the express dependency? Nothing in the instructions told you to do that. The instructions told you to:

Add version “2.14.0” of the “moment” package to the dependencies field of your package.json file.

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