MohGovIL / rn-contact-tracing

React Native Library For Contact Tracing Over BLE (Bluetooth Low Energy) To Fight COVID-19 Pandemic
MIT License
59 stars 16 forks source link

Split devDependencies into dependencies & devDependencies in package.json #92

Open emanuelb opened 4 years ago

emanuelb commented 4 years ago

Currently only devDependencies is used to declare dependencies in package.json file at: https://github.com/MohGovIL/rn-contact-tracing/blob/25a39240d5d6106c314df9ef4ddbf10a8ac24b08/package.json#L38-L64

By splitting into dependencies and devDependencies it will reduce the packages installed when package install with --production argument ( or environment variable NODE_ENV=production declared ) which will install only packages declared in dependencies (for example: eslint & jest are probably devDependencies which are used only in testing/CI )