0

Am new to coding, I have cloned this GitHub repository

https://github.com/TribeZOAGit/zoa_ussd

it happens to be missing the package.json file, so how do I create a package.json file for the already existing project.

I can't tell which dependencies.

npm init command creates the package.json file but with no dependencies.

After I cloned the repo, npm start throwing error

"Missing script start" Then I found package.json file was missing

npm init was meant to create the file but packages were not in the file, neither were dependencies nor scripts.

How do I addresse this issue

Thanks

Bayles
  • 1

1 Answers1

0

This is a Python repository, not JavaScript...

requirements.txt is pip's version of npm's package.json

See what is PIP

See here for information on installing the necessary packages using pip.

Or this Stack answer

Harrison
  • 1,654
  • 6
  • 11
  • 19