I just had the same issue. The problem was that at ~/.npmrc I had a file with tokens from a previous project. This made it so that in yarn.lock there were references to npm.fontawesome.com instead of https://registry.yarnpkg.com/@fortawesome/...
So:
- remove
~/.npmrc - remove lock file
- install dependencies again
This solved the issue for me