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.
Acceptance Criteria:
Possible implementation:
Uninstall packages that are DevDependencies using npm uninstall [package-name]
Install same package using 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.
Acceptance Criteria:
Possible implementation:
Uninstall packages that are DevDependencies using
npm uninstall [package-name]Install same package using
npm install [package-name] --save-dev