Update all the things (#7699)

All minor updates, commander was one major update but only to support
node 20 (which we're already past).

Tests pass, everything loaded up locally.
This commit is contained in:
Matt Godbolt
2025-05-19 06:51:21 -05:00
committed by GitHub
parent e1f11b6436
commit 74e5f237eb
5 changed files with 1271 additions and 1798 deletions

View File

@@ -1,7 +1,7 @@
# Frontend testing
We have a mixture of typescript in the main website's code (located in `static/tests`) and Cypress (located in
`cypress/integration`) to test and report on the workings of that code.
`cypress/e2e`) to test and report on the workings of that code.
But there's always the possibility to use Cypress code to do UI checks and testing.

3017
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -18,25 +18,25 @@
},
"main": "./app.ts",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.796.0",
"@aws-sdk/client-ec2": "^3.796.0",
"@aws-sdk/client-s3": "^3.796.0",
"@aws-sdk/client-sqs": "^3.796.0",
"@aws-sdk/client-ssm": "^3.796.0",
"@aws-sdk/credential-providers": "^3.796.0",
"@aws-sdk/client-dynamodb": "^3.812.0",
"@aws-sdk/client-ec2": "^3.812.0",
"@aws-sdk/client-s3": "^3.812.0",
"@aws-sdk/client-sqs": "^3.812.0",
"@aws-sdk/client-ssm": "^3.812.0",
"@aws-sdk/credential-providers": "^3.812.0",
"@flatten-js/interval-tree": "^1.1.3",
"@fortawesome/fontawesome-free": "^6.7.2",
"@orchidjs/sifter": "^1.1.0",
"@popperjs/core": "^2.11.8",
"@sentry/browser": "^9.14.0",
"@sentry/node": "^9.14.0",
"@sentry/browser": "^9.19.0",
"@sentry/node": "^9.19.0",
"@types/semver": "^7.7.0",
"big-integer": "^1.6.52",
"bootstrap": "^5.3.5",
"bootstrap": "^5.3.6",
"buffer": "^6.0.3",
"chart.js": "^4.4.9",
"clipboard": "^2.0.11",
"commander": "^13.1.0",
"commander": "^14.0.0",
"compression": "^1.8.0",
"copy-webpack-plugin": "^13.0.0",
"cross-env": "^7.0.3",
@@ -64,14 +64,14 @@
"response-time": "^2.3.3",
"sanitize-filename": "^1.6.3",
"scroll-into-view-if-needed": "^3.1.0",
"semver": "^7.7.1",
"semver": "^7.7.2",
"serve-favicon": "^2.5.0",
"systemd-socket": "0.0.0",
"tar-stream": "^3.1.7",
"tom-select": "^2.4.3",
"tree-kill": "^1.2.2",
"triple-beam": "^1.4.1",
"tsx": "^4.19.3",
"tsx": "^4.19.4",
"underscore": "^1.13.7",
"url-join": "^5.0.0",
"whatwg-fetch": "^3.6.20",
@@ -80,17 +80,17 @@
"winston-loki": "^6.1.3",
"winston-papertrail": "^1.0.5",
"winston-transport": "^4.9.0",
"ws": "^8.18.1",
"yaml": "^2.7.1"
"ws": "^8.18.2",
"yaml": "^2.8.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@sentry/types": "^9.14.0",
"@sentry/types": "^9.19.0",
"@smithy/util-stream": "^4.2.0",
"@types/bootstrap": "^5.2.10",
"@types/chai": "^5.2.1",
"@types/chai": "^5.2.2",
"@types/compression": "^1.7.5",
"@types/express": "^5.0.1",
"@types/express": "^5.0.2",
"@types/file-saver": "^2.0.7",
"@types/http-proxy": "^1.17.16",
"@types/jquery": "^3.5.32",
@@ -105,29 +105,29 @@
"@types/webpack-env": "^1.18.8",
"@types/which": "^3.0.4",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.1.2",
"@vitest/coverage-v8": "^3.1.3",
"aws-sdk-client-mock": "^4.1.0",
"cheerio": "^1.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.2",
"cypress": "^14.3.2",
"cypress": "^14.3.3",
"file-loader": "^6.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"lint-staged": "^15.5.2",
"mini-css-extract-plugin": "^2.9.2",
"mock-fs": "^5.5.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"nock": "^14.0.4",
"sass": "^1.87.0",
"sass": "^1.89.0",
"sass-loader": "^16.0.5",
"source-map-loader": "^5.0.0",
"supertest": "^7.1.0",
"supertest": "^7.1.1",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vitest": "^3.0.7",
"vitest-fetch-mock": "^0.4.5",
"webpack": "^5.99.6",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.2",
"webpack-manifest-plugin": "^5.0.1"

View File

@@ -29,7 +29,7 @@ class HelloWorldTests implements ITestable {
public async run() {
const person = true;
person.should.be.true;
if (!person) throw new Error('HelloWorldTests failed');
}
}

View File

@@ -52,7 +52,7 @@ const hasGit = fs.existsSync(path.resolve(__dirname, '.git'));
// Hack alert: due to a variety of issues, sometimes we need to change
// the name here. Mostly it's things like webpack changes that affect
// how minification is done, even though that's supposed not to matter.
const webpackJsHack = '.v56.';
const webpackJsHack = '.v57.';
const plugins: Webpack.WebpackPluginInstance[] = [
new MonacoEditorWebpackPlugin({
languages: [