Skip to content

Commit

Permalink
chore: assorted Dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Mar 13, 2024
1 parent 365ef2b commit a6c07dd
Show file tree
Hide file tree
Showing 9 changed files with 2,530 additions and 5,153 deletions.
17 changes: 9 additions & 8 deletions node-packages/commons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@
"test": "jest"
},
"devDependencies": {
"@types/amqp-connection-manager": "^2.0.6",
"@types/jest": "^25.1.3",
"jest": "^24.9.0",
"prettier": "^1.14.2",
"prettier-eslint-cli": "^4.7.1",
"ts-jest": "^25.2.1",
"@types/amqp-connection-manager": "^2.0.12",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-eslint-cli": "^8.0.1",
"ts-jest": "^29.1.2",
"tsc-silent": "^1.2.2",
"typescript": "^5.2.0"
"typescript": "^5.3.3"
},
"dependencies": {
"@lagoon/lokka-transport-http": "^1.6.1",
"amqp-connection-manager": "^1.3.5",
"amqp-connection-manager": "^1.4.2",
"amqplib": "^0.7.1",
"axios": "^0.21.1",
"jsonwebtoken": "^8.0.1",
Expand All @@ -31,6 +31,7 @@
"node-fetch": "^2.6.0",
"ramda": "0.25.0",
"sha1": "^1.1.1",
"tsc-silent": "^1.2.2",
"winston": "^3"
}
}
6 changes: 3 additions & 3 deletions node-packages/eslint-config-lagoon-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"Karl Horky <[email protected]>"
],
"dependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.7.0"
}
}
10 changes: 2 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,8 @@
"services/*"
],
"devDependencies": {
"prettier": "^1.14.2"
},
"resolutions-comment": [
"Used to override security release for nested dependencies",
"serialize-javascript: Can probably be removed when next.js upgrades to ^9.0"
],
"resolutions": {
"serialize-javascript": "^2.1.1"
"prettier": "^3.2.5",
"yarn-audit-fix": "^10.0.7"
},
"scripts": {
"glow": "glow check"
Expand Down
19 changes: 9 additions & 10 deletions services/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"dependencies": {
"@lagoon/commons": "4.0.0",
"@supercharge/request-ip": "^1.1.2",
"@types/redis": "^2.8.22",
"apollo-server-express": "^2.14.2",
"aws-sdk": "^2.378.0",
"body-parser": "^1.18.2",
Expand Down Expand Up @@ -67,17 +66,17 @@
"winston-transport": "^4.4.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.18",
"@types/jest": "^29.5.12",
"@types/ramda": "types/npm-ramda#dist",
"@types/redis": "^2.8.32",
"axios": "^0.21.1",
"faker": "^4.1.0",
"jest": "^24.9.0",
"prettier": "^1.14.2",
"prettier-eslint-cli": "^4.7.1",
"ts-jest": "^24.0.2",
"tsc-watch": "^4.4.0",
"typescript": "^5.2.0"
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-eslint-cli": "^8.0.1",
"ts-jest": "^29.1.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
}
}
1 change: 1 addition & 0 deletions services/api/src/routes/keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const keysRoute = async (
// Transform from single-level array to array of pairs, with the SSH key fingerprint as the first value
// @ts-ignore
R.map(sshKey => [toFingerprint(sshKey), sshKey]),
// @ts-ignore error TS2554: Expected 0 arguments, but got 1.
)(keys);

const result = R.propOr('', fingerprint, fingerprintKeyMap);
Expand Down
8 changes: 4 additions & 4 deletions services/auth-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
"winston": "^3"
},
"devDependencies": {
"nodemon": "^2.0.20",
"prettier": "^1.14.2",
"prettier-eslint-cli": "^4.7.1",
"typescript": "^5.2.0"
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"prettier-eslint-cli": "^8.0.1",
"typescript": "^5.3.3"
}
}
10 changes: 5 additions & 5 deletions services/webhook-handler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
"uuid4": "^1.0.0"
},
"devDependencies": {
"jest": "^24.9.0",
"newman": "^4.5.4",
"nodemon": "^2.0.20",
"ts-jest": "^26.0.0",
"typescript": "^5.2.0"
"jest": "^29.7.0",
"newman": "^6.1.1",
"nodemon": "^3.0.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}
11 changes: 5 additions & 6 deletions services/webhooks2tasks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,16 @@
"license": "MIT",
"dependencies": {
"@lagoon/commons": "4.0.0",
"amqp-connection-manager": "^1.3.5",
"amqp-connection-manager": "^1.4.2",
"amqplib": "^0.7.1",
"async-retry": "^1.2.3",
"ramda": "0.25.0",
"sshpk": "^1.16.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.13.0",
"@types/amqp-connection-manager": "^2.0.10",
"jest": "^26.6.3",
"nodemon": "^2.0.20",
"typescript": "^5.2.0"
"@types/amqp-connection-manager": "^2.0.12",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"typescript": "^5.3.3"
}
}
Loading

0 comments on commit a6c07dd

Please sign in to comment.