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

Tell us what’s happening:

“dependencies”: {
“express”: “^4.14.0”,
“package-name”: “@freecodecamp/example”,
“version”: “1.1.0”
},
please correct the wrong format
showing error // running tests 1.

"dependencies"

should include

"@freecodecamp/example"

. 2.

"@freecodecamp/example"

version should be

"1.1.0"

. // tests completed

###Your project link(s)

solution: https://3000-freecodecam-boilerplate-0bglcsg9gw4.ws-us118.gitpod.io

Your browser information:

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

Challenge Information:

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

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Welcome to the forum @hemali.das96

  "package-name": "version",

You need to replace the key / value pairs with the correct text.
Instead, you created a new set of key / value pairs.

You only need to update one line of code for this step.

Happy coding