PresearchOfficial/presearch-packages

Missing emoji-regex dependency

Closed this issue · 2 comments

Describe the bug
When I run npm install it does not install emoji-regex. So when I try to cd server && npm start, I get an error saying that is missing module emoji-regex.

To Reproduce
Steps to reproduce the behavior:

  1. Fork a new repository and clone it to your IDE
  2. In presearch-packages, run npm install
  3. cd server && npm start
  4. Attempt to access http://localhost:4000/

Expected behavior
It should install all dependencies so that we can run the test server.

Screenshots
image

Desktop (please complete the following information):

  • OS: Windows
  • Browser: Brave
  • Version 1.31.87

Smartphone (please complete the following information):
N/A

Additional context
Just posting for reference in case other developers run into it. I imagine it will be fixed easily enough.

I fix this adding "emoji-regex": "^10.0.0" to the root level package.json as "dependencies"

#87

Screenshot from 2021-10-27 13-30-58

thanks @ishan27596. I've pushed the changes to main branch.