Just follow these steps. I’m on windows 10 and it worked perfectly for me!
In the same directory where you have
package.json
create anpm-shrinkwrap.json
file with the following contents:1
2
3
4
5
6
7{
"dependencies": {
"graceful-fs": {
"version": "4.2.2"
}
}
}Run
npm install
, and don’t worry, it’ll updatenpm-shrinkwrap.json
with a bunch of content.Run
gulp
to start the project.
Source: