-
Notifications
You must be signed in to change notification settings - Fork 120
Bump the all-dependencies group across 1 directory with 31 updates #2118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,60 +24,60 @@ | |
| "playwright-ui": "npx playwright test --ui" | ||
| }, | ||
| "dependencies": { | ||
| "@amplitude/analytics-browser": "^2.20.1", | ||
| "@creit.tech/stellar-wallets-kit": "^2.2.0", | ||
| "@ledgerhq/hw-app-str": "^7.2.9", | ||
| "@ledgerhq/hw-transport-webhid": "^6.30.9", | ||
| "@amplitude/analytics-browser": "^2.44.1", | ||
| "@creit.tech/stellar-wallets-kit": "^2.3.0", | ||
| "@ledgerhq/hw-app-str": "^7.7.4", | ||
| "@ledgerhq/hw-transport-webhid": "^6.35.4", | ||
| "@monaco-editor/react": "^4.7.0", | ||
| "@next/third-parties": "^15.5.7", | ||
| "@sentry/nextjs": "^10.29.0", | ||
| "@next/third-parties": "^16.2.9", | ||
| "@sentry/nextjs": "^10.59.0", | ||
| "@stellar-expert/contract-wasm-interface-parser": "^4.1.0", | ||
| "@stellar/design-system": "^3.2.7", | ||
| "@stellar/stellar-sdk": "16.0.0", | ||
| "@stellar/stellar-xdr-json": "^27.0.0", | ||
| "@tanstack/react-query": "^5.83.0", | ||
| "@tanstack/react-query-devtools": "^5.83.0", | ||
| "@tanstack/react-query": "^5.101.0", | ||
| "@tanstack/react-query-devtools": "^5.101.0", | ||
| "@trezor/connect-plugin-stellar": "^9.2.3", | ||
| "@trezor/connect-web": "^9.6.4", | ||
| "bignumber.js": "^9.3.1", | ||
| "dompurify": "^3.2.5", | ||
| "html-react-parser": "^5.2.6", | ||
| "immer": "^10.1.1", | ||
| "lodash": "^4.17.21", | ||
| "lossless-json": "^4.0.2", | ||
| "next": "15.5.15", | ||
| "@trezor/connect-web": "^9.7.3", | ||
| "bignumber.js": "^11.1.4", | ||
| "dompurify": "^3.4.11", | ||
| "html-react-parser": "^6.1.3", | ||
| "immer": "^11.1.8", | ||
| "lodash": "^4.18.1", | ||
| "lossless-json": "^4.3.0", | ||
| "next": "16.2.9", | ||
| "papaparse": "^5.5.2", | ||
| "react": "^19.2.2", | ||
| "react-diff-viewer": "^3.1.1", | ||
| "react-dom": "^19.2.2", | ||
| "stellar-hd-wallet": "^1.0.2", | ||
| "tslib": "^2.8.1", | ||
| "uuid": "^11.1.0", | ||
| "uuid": "^14.0.1", | ||
| "zustand": "^5.0.6", | ||
| "zustand-querystring": "^0.0.19" | ||
| "zustand-querystring": "^0.7.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This bump installs Useful? React with 👍 / 👎. |
||
| }, | ||
| "devDependencies": { | ||
| "@next/eslint-plugin-next": "^15.4.4", | ||
| "@playwright/test": "^1.57.0", | ||
| "@next/eslint-plugin-next": "^16.2.9", | ||
| "@playwright/test": "^1.61.0", | ||
| "@types/jest": "^30.0.0", | ||
| "@types/json-schema": "^7.0.15", | ||
| "@types/lodash": "^4.17.20", | ||
| "@types/node": "^24.1.0", | ||
| "@types/lodash": "^4.17.24", | ||
| "@types/node": "^26.0.0", | ||
| "@types/papaparse": "^5.3.15", | ||
| "@types/react": "^19.1.9", | ||
| "@types/react-dom": "^19.1.7", | ||
| "@typescript-eslint/eslint-plugin": "^8.30.1", | ||
| "eslint": "^9.32.0", | ||
| "eslint-config-next": "15.4.4", | ||
| "@typescript-eslint/eslint-plugin": "^8.61.1", | ||
| "eslint": "^10.5.0", | ||
| "eslint-config-next": "16.2.9", | ||
| "eslint-config-prettier": "^10.1.8", | ||
| "eslint-plugin-react-hooks": "^5.2.0", | ||
| "eslint-plugin-react-hooks": "^7.1.1", | ||
| "husky": "^9.1.7", | ||
| "jest": "^30.2.0", | ||
| "lint-staged": "^16.1.2", | ||
| "prettier": "^3.5.3", | ||
| "sass": "^1.86.3", | ||
| "jest": "^30.4.2", | ||
| "lint-staged": "^17.0.8", | ||
| "prettier": "^3.8.4", | ||
| "sass": "^1.101.0", | ||
| "ts-jest": "^29.4.6", | ||
| "typescript": "^5.8.3" | ||
| "typescript": "^6.0.3" | ||
| }, | ||
| "packageManager": "pnpm@10.15.1" | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upgrading
nextto 16 makes the existing lint commands invalid:package.json:15still runsnext lint, and.lintstagedrc.js:4still generatesnext lint --fix --file .... The Next.js 16 ESLint docs state thatnext lintis removed (docs), sopnpm lintand pre-commit lint-staged runs will fail until these are migrated to the ESLint CLI/flat config.Useful? React with 👍 / 👎.