Many libraries have been installed but never used. file. Many are used exclusively in the front end of the application (within /client), but are installed in the back end /package.json.
Move front end libraries to /client/package.json
Delete unused deps from package.json
To determine unused deps, you may use a library such as depcheck or npm-check. Double check that a package is unused by searching for references in the codebase.
Many libraries have been installed but never used. file. Many are used exclusively in the front end of the application (within
/client
), but are installed in the back end/package.json
./client/package.json
package.json
To determine unused deps, you may use a library such as
depcheck
ornpm-check
. Double check that a package is unused by searching for references in the codebase.