When I created this, I created it with the belief that everything is essentially a development dependency because we should be compiling everything into a bundle and deploying that to production. However, it is beneficial to mark which ones are used in production code.
This means dependencies like react-dom should be under dependencies, and karma should remain under devDependencies.
When I created this, I created it with the belief that everything is essentially a development dependency because we should be compiling everything into a bundle and deploying that to production. However, it is beneficial to mark which ones are used in production code.
This means dependencies like
react-dom
should be underdependencies
, andkarma
should remain underdevDependencies
.