Add nodemon to devDependencies since it is used in npm run dev script, so other contributors will not be forced to install it manually
Use npm ci --omit=dev in Dockerfile, so npm will use package-lock.json and installations will be more resilient (omit dev to skip unneeded devDependencies in production)
Nothing special here, just minor improvements:
nodemon
to devDependencies since it is used innpm run dev
script, so other contributors will not be forced to install it manuallynpm ci --omit=dev
in Dockerfile, so npm will use package-lock.json and installations will be more resilient (omit dev to skip unneeded devDependencies in production)