-
Notifications
You must be signed in to change notification settings - Fork 71.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unused dependencies #4129
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
depcheck
after recent changes and found we…
… had were importing `ajv, `long`, `swagger-ui-dist` and `uuid` even though those now have no usages. Tested all base functionality without the modules in place and things seem to work as expected. Additionaly removing old bundle script related to browserify
- Loading branch information
There are no files selected for viewing
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,6 @@ | |
"npm": "6.x" | ||
}, | ||
"dependencies": { | ||
"ajv": "^6.5.5", | ||
"async": "^0.9.2", | ||
"body-parser": "^1.18.3", | ||
"bootevent": "0.0.1", | ||
|
@@ -74,7 +73,6 @@ | |
"js-storage": "^1.0.4", | ||
"jsonwebtoken": "^8.4.0", | ||
"lodash": "^4.17.11", | ||
"long": "^4.0.0", | ||
"mime": "^2.4.0", | ||
"minimed-connect-to-nightscout": "^1.1.1", | ||
"moment": "^2.22.2", | ||
|
@@ -91,10 +89,8 @@ | |
"shiro-trie": "^0.4.8", | ||
"simple-statistics": "^0.7.0", | ||
"socket.io": "^2.1.1", | ||
"swagger-ui-dist": "^3.20.1", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. swagger-ui-dist is needed for /api-docs.html There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
"traverse": "^0.6.6", | ||
"uglify-js": "^3.4.9", | ||
"uuid": "^3.2.1" | ||
"uglify-js": "^3.4.9" | ||
}, | ||
"devDependencies": { | ||
"benv": "^3.3.0", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was required for
lib/server/mqtt.js
. Can be removed now