From 0ad940c8e4ab341a3b3f6ee2f737e9ee7ea71ba7 Mon Sep 17 00:00:00 2001 From: Joe Uhren Date: Sun, 12 Jun 2022 19:36:17 -0600 Subject: [PATCH] Package.json updates -Added pm2 and forever to the dev dependencies list to help prevent package.json from being automatically updated/changed in production which could make `git pull` fail due to the changes -Both dependencies and dev dependencies sections have been sorted alphabetically to also help prevent auto package.json changes -All dependency version numbers have been updated to the latest versions as of today NOTE: You can run the following cmd if you are having troubles running `npm run update-explorer` or `git pull` due to uncommitted changes to package.json: git restore package.json --- package.json | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/package.json b/package.json index 4f7a1bb..4f1111a 100644 --- a/package.json +++ b/package.json @@ -28,26 +28,28 @@ "update-explorer": "node ./scripts/update_explorer.js" }, "dependencies": { - "express": ">=4.17.1", - "async": "^3.2.2", - "intl": "^1.2.5", - "serve-favicon": "^2.5.0", - "morgan": ">=1.10.0", - "cookie-parser": "^1.4.6", - "body-parser": "^1.19.0", - "debug": ">=4.3.3", - "pug": "~3.0.2", - "postman-request": "^2.88.1-postman.30", - "jsonminify": "^0.4.1", - "jstransformer-markdown-it": "^2.1.0", - "mongodb": "^4.2.1", - "mongoose": "^6.0.14", - "qr-image": "^3.2.0", - "sass": "^1.44.0", + "async": "^3.2.4", "bad-words": "^3.0.4", - "readline-sync": "^1.4.10" + "body-parser": "^1.20.0", + "cookie-parser": "^1.4.6", + "debug": ">=4.3.4", + "express": ">=4.18.1", + "intl": "^1.2.5", + "jsonminify": "^0.4.2", + "jstransformer-markdown-it": "^2.1.0", + "mongodb": "^4.7.0", + "mongoose": "^6.3.6", + "morgan": ">=1.10.0", + "postman-request": "^2.88.1-postman.31", + "pug": "~3.0.2", + "qr-image": "^3.2.0", + "readline-sync": "^1.4.10", + "sass": "^1.52.3", + "serve-favicon": "^2.5.0" }, "devDependencies": { - "jasmine": ">=3.6.3" + "forever": "^4.0.3", + "jasmine": ">=4.2.0", + "pm2": "^5.2.0" } } \ No newline at end of file