Here is an example of the package.json
file, installed using the command
npm install <nome> --save-dev
:
{
"dependencies": {},
"devDependencies": {
"bootstrap": "^4.1.3",
"cross-env": "^5.2.0",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"node-sass": "^4.9.3"
}
}
If I just manually change this way, is something wrong? Out of some convention, or can something else go ahead?
(disregard the functionality of packages, just to illustrate):
{
"dependencies": {
"font-awesome": "^4.7.0",
},
"devDependencies": {
"bootstrap": "^4.1.3",
"cross-env": "^5.2.0",
"jquery": "^3.3.1",
"node-sass": "^4.9.3"
}
}