Update all outdated package.json dependencies

-Main update is to add support for express v5.x which required some code changes to a few of the public and wallet api routes
-Removed the body-parser dependency and replaced with express which now has the same functionaliuty built-in and is no longer necessary to have a dedicated dependency
-All dependencies in the package.json have been updated to reference the most up-to-date version numbers
This commit is contained in:
Joe Uhren
2025-04-13 21:25:24 -06:00
parent b8030855af
commit 80ecf19ac5
3 changed files with 65 additions and 72 deletions
+12 -13
View File
@@ -31,26 +31,25 @@
"benchmark": "node ./scripts/benchmark.js"
},
"dependencies": {
"async": "^3.2.4",
"async": "^3.2.6",
"bad-words": "^4.0.0",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"debug": ">=4.3.4",
"express": "^4.21.2",
"cookie-parser": "^1.4.7",
"debug": "^4.4.0",
"express": "^5.1.0",
"intl": "^1.2.5",
"jsonminify": "^0.4.2",
"mongodb": "^6.1.0",
"mongoose": "^8.0.3",
"morgan": ">=1.10.0",
"postman-request": "^2.88.1-postman.31",
"pug": "~3.0.2",
"mongodb": "^6.15.0",
"mongoose": "^8.13.2",
"morgan": "^1.10.0",
"postman-request": "^2.88.1-postman.42",
"pug": "~3.0.3",
"qr-image": "^3.2.0",
"sass": "^1.52.3",
"sass": "^1.86.3",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"forever": "^4.0.3",
"jasmine": ">=4.2.0",
"pm2": "^5.2.0"
"jasmine": "^5.6.0",
"pm2": "^6.0.5"
}
}