Should sass be installed as a 'dependency' or as a 'devDependency'?
In the npm page says: " You can also add it to your project using npm install --save-dev sass."
But in the Install Sass page there is no information about this topic.
I have it like this and it works:
  "devDependencies": {
    "@parcel/transformer-sass": "^2.3.2",
    "parcel": "^2.3.2"
  },
  "dependencies": {
    "normalize.css": "^8.0.1",
    "sass": "^1.49.8"
}
But I wonder whether I should better have it as a devDependency.
 
     
    