We need to move react-scripts to devDependencies because otherwise, when users include mdbreact as a dependency and do an npm install, it also installs react-scripts which increases the node_modules size by ~300MB.
It is possible that react-scripts can be removed completely, I don't see it being used anywhere, but since there are no tests, I thought it was safer to just move for now.
We need to move react-scripts to devDependencies because otherwise, when users include
mdbreact
as a dependency and do annpm install
, it also installsreact-scripts
which increases the node_modules size by ~300MB.It is possible that
react-scripts
can be removed completely, I don't see it being used anywhere, but since there are no tests, I thought it was safer to just move for now.Closes #44