Managing Packages with NPM - How to Use package.json, the Core of Any Node.js Project or npm Package

Tell us what’s happening:

Describe your issue in detail here.
I’ve done everything per instructions and am using the NPM boilerplate but my solutions are being rejected as invalid keys.

Your code so far

{
	"name": "fcc-learn-npm-package-json",
	"author": "Taylor Jackson",
	"description": "A project that does something awesome",
	"dependencies": {
		"express": "^4.14.0"
	},
	"main": "server.js",
	"scripts": {
		"start": "node server.js"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/Valamir777/NPM.git"
	}
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.686 YaBrowser/23.9.5.686 Yowser/2.5 Safari/537.36

Challenge Information:

Managing Packages with NPM - How to Use package.json, the Core of Any Node.js Project or npm Package

Hello, editors have a automatic file creation, type create json file or something like that,open that up and manually fill this in a step at a time. Try running npm fix or force fix and reading the error messages.

How are you submitting the code?

It has to be running on a server and you submit the base URL of the server.

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