mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
chore: fix vulnerability dependencies (#7715)
This commit is contained in:
parent
d659ddedd6
commit
ceaa0e6942
7 changed files with 1146 additions and 435 deletions
10
package.json
10
package.json
|
|
@ -102,7 +102,7 @@
|
|||
"prettier-plugin-sql": "0.18.1",
|
||||
"prettier-plugin-tailwindcss": "0.6.9",
|
||||
"pretty-quick": "4.0.0",
|
||||
"rimraf": "4.4.1",
|
||||
"rimraf": "6.1.3",
|
||||
"tailwindcss": "3.4.17",
|
||||
"tsup": "8.4.0",
|
||||
"tsx": "4.19.2",
|
||||
|
|
@ -124,7 +124,9 @@
|
|||
"overrides.diff@<8.0.3": "address https://github.com/graphql-hive/console/security/dependabot/438",
|
||||
"overrides.lodash-es@4.x.x": "address https://github.com/graphql-hive/console/security/dependabot/453",
|
||||
"overrides.lodash@4.x.x": "address https://github.com/graphql-hive/console/security/dependabot/455",
|
||||
"overrides.fast-xml-parser@5.x.x": "address https://github.com/graphql-hive/console/security/dependabot/463",
|
||||
"overrides.fast-xml-parser@5.x.x": "address https://github.com/graphql-hive/console/security/dependabot/501",
|
||||
"overrides.minimatch@10.x.x": "address https://github.com/graphql-hive/console/security/dependabot/505",
|
||||
"overrides.qs@<6.14.2": "address https://github.com/graphql-hive/console/security/dependabot/499",
|
||||
"overrides": {
|
||||
"esbuild": "0.25.9",
|
||||
"csstype": "3.1.2",
|
||||
|
|
@ -149,7 +151,9 @@
|
|||
"lodash-es@4.x.x": "^4.17.23",
|
||||
"lodash@4.x.x": "^4.17.23",
|
||||
"seroval@<1.4.1": "^1.4.1",
|
||||
"fast-xml-parser@<5.3.4": "^5.3.4"
|
||||
"fast-xml-parser@<5.3.6": "^5.3.6",
|
||||
"minimatch@10.x.x": "^10.2.2",
|
||||
"qs@<6.14.2": "^6.14.2"
|
||||
},
|
||||
"patchedDependencies": {
|
||||
"mjml-core@4.14.0": "patches/mjml-core@4.14.0.patch",
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@
|
|||
"@types/env-ci": "3.1.4",
|
||||
"graphql": "16.9.0",
|
||||
"oclif": "4.22.65",
|
||||
"rimraf": "4.4.1",
|
||||
"rimraf": "6.1.3",
|
||||
"tsx": "4.19.2",
|
||||
"typescript": "5.7.3"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"@sentry/tracing": "7.114.0",
|
||||
"@trpc/server": "10.45.3",
|
||||
"@types/eslint": "8.56.12",
|
||||
"ajv": "8.17.1",
|
||||
"ajv": "8.18.0",
|
||||
"dotenv": "16.4.7",
|
||||
"eslint": "8.57.1",
|
||||
"fastify": "5.7.3",
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
"@sinclair/typebox": "0.34.41",
|
||||
"@trpc/client": "10.45.3",
|
||||
"@trpc/server": "10.45.3",
|
||||
"ajv": "8.17.1",
|
||||
"ajv": "8.18.0",
|
||||
"dotenv": "16.4.7",
|
||||
"got": "14.4.7",
|
||||
"graphql": "16.9.0",
|
||||
|
|
|
|||
1561
pnpm-lock.yaml
1561
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
|
@ -5,6 +5,6 @@
|
|||
"main": "index.cjs",
|
||||
"devDependencies": {
|
||||
"@types/minimatch": "5.1.2",
|
||||
"minimatch": "10.2.1"
|
||||
"minimatch": "10.2.2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import { fileURLToPath } from 'url';
|
||||
import rimraf from 'rimraf';
|
||||
import { rimraf } from 'rimraf';
|
||||
|
||||
const cwd = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue