I passed one learning course on Node.js and Angular. And the teacher there used in package.json
A lot of asterisks instead of specific versions of libs.
"dependencies": { "bcrypt": "*", "bcryptjs": "^2.4.3", "body-parser": "*", "cors": "*", "express": "*", "jsonwebtoken": "*", "mongoose": "*", "morgan": "^1.10.0", "passport": "*", "passport-jwt": "*" }, "devDependencies": { "nodemon": "^2.0.7" } Is it a good or a bad practice to use them?