npm install error
Describe the bug
When I want to run the desktop version, I get error when I run npm install
And when i run npm run apply:bitpay , still errors
Screenshots

Desktop (please complete the following information):
my node version is v14.15.2
exactly the same problem
It worked for me with Node v10.x might work with 12 also as I saw some comment around bumping the version to 12. @hmdadou , @1617295759
If anyone is still interested in the solution, you need to switch to Node 10. npm install will fail if you use the latest version of Nodejs. You can do this using n:
sudo npm install -g n # if you don't already have it
sudo n 10.16.2 # This is the version they used in the latest build & test
You can also use NVM if you want but I used n.
This will result in successful compilation.