Skip to content

Commit

Permalink
feat: update dependencies to fix vulnerabilities and improve compatib…
Browse files Browse the repository at this point in the history
…ility

Updated key dependencies, including @testing-library/*, eslint, prettier, jest, and puppeteer, to their latest versions.

Resolved security vulnerabilities:
Rollup (GHSA-gcx4-mw62-g8wm)
Serialize-Javascript (GHSA-h9rv-jmmf-4pgx)
Axios (GHSA-wf5p-g6vw-rhxx)
Got (GHSA-pfrx-2q88-qq97)
Lodash (GHSA-35jh-r3h4-6jhm)

Ensured compatibility with monorepo structure and modern Node.js/NPM environments.

Validated core scripts (build, start, and test) with updated dependencies.
  • Loading branch information
q1akm authored Dec 1, 2024
1 parent dd420a6 commit 6016d17
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"build": "cd packages/react-scripts && node bin/react-scripts.js build",
"changelog": "lerna-changelog",
"create-react-app": "node tasks/cra.js",
"e2e": "tasks/e2e-simple.sh",
"e2e:docker": "tasks/local-test.sh",
"e2e": "bash tasks/e2e-simple.sh",
"e2e:docker": "bash tasks/local-test.sh",
"postinstall": "npm run build:prod -w react-error-overlay",
"publish": "tasks/publish.sh",
"publish": "bash tasks/publish.sh",
"start": "cd packages/react-scripts && node bin/react-scripts.js start",
"screencast": "node ./tasks/screencast.js",
"screencast:error": "svg-term --cast jyu19xGl88FQ3poMY8Hbmfw8y --out screencast-error.svg --window --at 12000 --no-cursor",
Expand All @@ -23,29 +23,29 @@
"format": "npm run prettier -- --write"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"alex": "^8.2.0",
"eslint": "^8.3.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"globby": "^11.0.4",
"husky": "^4.3.8",
"jest": "^27.4.3",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^12.1.2",
"meow": "^9.0.0",
"multimatch": "^5.0.0",
"prettier": "^2.5.0",
"puppeteer": "^12.0.1",
"strip-ansi": "^6.0.1",
"svg-term-cli": "^2.1.1",
"tempy": "^1.0.1",
"wait-for-localhost": "^3.3.0",
"web-vitals": "^2.1.2"
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"alex": "^10.0.0",
"eslint": "^8.57.0",
"execa": "^7.0.0",
"fs-extra": "^11.1.1",
"get-port": "^6.0.1",
"globby": "^13.2.0",
"husky": "^8.0.4",
"jest": "^29.6.1",
"lerna": "^7.2.1",
"lerna-changelog": "^2.3.1",
"lint-staged": "^14.0.0",
"meow": "^12.1.0",
"multimatch": "^6.0.0",
"prettier": "^3.0.3",
"puppeteer": "^21.0.2",
"strip-ansi": "^7.0.1",
"svg-term-cli": "^3.0.0",
"tempy": "^4.0.0",
"wait-for-localhost": "^6.0.0",
"web-vitals": "^4.0.1"
},
"husky": {
"hooks": {
Expand Down

0 comments on commit 6016d17

Please sign in to comment.