I am following the Laravel docs and wanted to install Elixir for managing sass and other preprocessors.
But as I start "npm install" from the laravel root folder, I end up with:
114.316.724 bytes (220,3 MB on disk) for 35.861 items
in the node_modules folder!
Please tell me that Elixir or Gulp does not need this ridiculous amount of dependencies, or did I something wrong?
The package.json contains:
{
"private": true,
"scripts": {
"prod": "gulp --production",
"dev": "gulp watch"
},
"devDependencies": {
"gulp": "^3.9.1",
"laravel-elixir": "^5.0.0",
"bootstrap-sass": "^3.3.0"
}
}