APIs and Microservices curriculum failing

Please format code snippets in your forum posts.

Here is a brief post that explains everything you need to know about formatting your messages in the forum:

To your problem:

I could not copy your posted code because of the missing formatting. (the quotes are not recognized).

I also can’t spot any obvious issue apart from the file name which should be “package.json” and not “Package.json” (I guess this was just a typo).

This package.json content worked for me:

{
	"name": "fcc-learn-npm-package-json",
	"author": "Dennis",
	"dependencies": {
		"express": "^4.14.0"
	},
	"main": "server.js",
	"scripts": {
		"start": "node server.js"
	},
	"repository": {
		"type": "git",
		"url": "https://idontknow/todo.git"
	}
}

Maybe you try this in your replit, it should work if there is not another issue with your project.

best
Dennis