From f830bab4ec14f3fe814962a6a2dee180149c3a6a Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Mon, 20 Sep 2021 19:43:18 +0000 Subject: The Whole Barnshow Commit - Use yarn-berry instead of npm, with Zero Install feature and goodies - Add `initializeToken` to post unique token to logs on startup - Package upgrades - Fix index.html.template tests I will never do this again --- package.json | 60 +++++++++++++++++++++++++++++++----------------------------- 1 file changed, 31 insertions(+), 29 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 7dc90fe..ae4ebc6 100644 --- a/package.json +++ b/package.json @@ -14,47 +14,49 @@ "format": "prettier --write 'src/**/*.ts'", "lint": "eslint 'src/**/*.ts'", "lint:fix": "eslint --fix 'src/**/*.ts'", - "test": "jest", - "test:coverage": "jest --coverage", + "test": "jest -i", + "test:coverage": "jest -i --coverage", "tsc": "tsc", "doc": "typedoc src" }, "author": "Kevin J Hoerr ", "license": "Parity-7.0.0", "dependencies": { - "@types/express": "^4.17.6", - "@types/jsdom": "^12.2.4", - "@types/mongodb": "^3.5.16", + "@types/express": "^4.17.13", + "@types/jsdom": "^16.2.13", + "@types/uuid": "^8.3.1", "@types/xml2js": "^0.4.9", - "badgen": "^3.0.1", - "dotenv": "^8.2.0", + "badgen": "^3.2.2", + "bson": "^4.5.2", + "dotenv": "^10.0.0", "express": "^4.17.1", - "express-winston": "^4.0.3", - "handlebars": "^4.7.6", - "jsdom": "^15.2.1", - "mongodb": "^3.5.7", - "typescript": "^3.8.3", - "winston": "^3.2.1", + "express-winston": "^4.2.0", + "handlebars": "^4.7.7", + "jsdom": "^17.0.0", + "mongodb": "^4.1.2", + "typescript": "^4.4.3", + "uuid": "^8.3.2", + "winston": "^3.3.3", "xml2js": "^0.4.23" }, "devDependencies": { - "@microsoft/tsdoc": "^0.12.19", - "@types/jest": "^25.2.1", - "@types/supertest": "^2.0.9", - "@types/triple-beam": "^1.3.0", - "@typescript-eslint/eslint-plugin": "^2.31.0", - "@typescript-eslint/parser": "^2.31.0", - "eslint": "^6.8.0", - "eslint-config-prettier": "^6.11.0", - "eslint-plugin-prettier": "^3.1.3", - "eslint-plugin-tsdoc": "^0.2.4", - "jest": "^25.5.4", - "prettier": "^1.19.1", - "supertest": "^4.0.2", + "@microsoft/tsdoc": "^0.13.2", + "@types/jest": "^27.0.1", + "@types/supertest": "^2.0.11", + "@types/triple-beam": "^1.3.2", + "@typescript-eslint/eslint-plugin": "^4.31.1", + "@typescript-eslint/parser": "^4.31.1", + "eslint": "^7.32.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-prettier": "^4.0.0", + "eslint-plugin-tsdoc": "^0.2.14", + "jest": "^27.2.0", + "prettier": "^2.4.1", + "supertest": "^6.1.6", "triple-beam": "^1.3.0", - "ts-jest": "^25.5.0", - "tsc-watch": "^4.2.3", - "typedoc": "^0.17.6" + "ts-jest": "^27.0.5", + "tsc-watch": "^4.5.0", + "typedoc": "^0.22.3" }, "jest": { "preset": "ts-jest", -- cgit