Certain packages and libraries are only needed when actively developing the project, and are unnecessary when deployed. For example, testing suites are important to make sure covered code is behaving properly, but have no effect on how the project runs. These are known as DevDependencies.
DevDependencies should first be identified. If they are not already marked as such in the Pipfile or package.json, uninstall then reinstall the package using one of the following commands:
Backend: pipenv install --dev [package-name]
Frontend: npm install [package-name] --save-dev
Certain packages and libraries are only needed when actively developing the project, and are unnecessary when deployed. For example, testing suites are important to make sure covered code is behaving properly, but have no effect on how the project runs. These are known as DevDependencies.
DevDependencies should first be identified. If they are not already marked as such in the Pipfile or package.json, uninstall then reinstall the package using one of the following commands:
Backend: pipenv install --dev [package-name]
Frontend: npm install [package-name] --save-dev