build(deps): bump the next group with 2 updates (#758)

* build(deps): bump the next group with 2 updates

Bumps the next group with 2 updates: [next](https://github.com/vercel/next.js) and [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next).


Updates `next` from 14.2.15 to 15.0.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v14.2.15...v15.0.0)

Updates `eslint-config-next` from 14.2.15 to 15.0.0
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v15.0.0/packages/eslint-config-next)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: next
- dependency-name: eslint-config-next
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: next
...

Signed-off-by: dependabot[bot] <support@github.com>

* migrated eslint config

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Deepak Prabhakara <deepak@boxyhq.com>
This commit is contained in:
dependabot[bot] 2024-10-22 20:21:56 +03:00 committed by GitHub
parent f031260bde
commit 11d463a28d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 1908 additions and 1312 deletions

View File

@ -1,4 +0,0 @@
{
"parser": "@typescript-eslint/parser",
"extends": "next/core-web-vitals"
}

1
.prettierignore Normal file
View File

@ -0,0 +1 @@
eslint.config.cjs

18
eslint.config.cjs Normal file
View File

@ -0,0 +1,18 @@
const tsParser = require("@typescript-eslint/parser");
const js = require("@eslint/js");
const {
FlatCompat,
} = require("@eslint/eslintrc");
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});
module.exports = [...compat.extends("next/core-web-vitals"), {
languageOptions: {
parser: tsParser,
},
}];

2
next-env.d.ts vendored
View File

@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
// NOTE: This file should not be edited // NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information. // see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

3199
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -16,7 +16,7 @@
"dependencies": { "dependencies": {
"@boxyhq/saml20": "1.5.1", "@boxyhq/saml20": "1.5.1",
"daisyui": "4.12.13", "daisyui": "4.12.13",
"next": "14.2.15", "next": "15.0.0",
"react": "18.3.1", "react": "18.3.1",
"react-dom": "18.3.1", "react-dom": "18.3.1",
"react-gtm-module": "2.0.11" "react-gtm-module": "2.0.11"
@ -27,8 +27,8 @@
"@types/react-gtm-module": "2.0.3", "@types/react-gtm-module": "2.0.3",
"@typescript-eslint/parser": "8.11.0", "@typescript-eslint/parser": "8.11.0",
"autoprefixer": "10.4.20", "autoprefixer": "10.4.20",
"eslint": "8.57.1", "eslint": "9.13.0",
"eslint-config-next": "14.2.15", "eslint-config-next": "15.0.0",
"json": "11.0.0", "json": "11.0.0",
"postcss": "8.4.47", "postcss": "8.4.47",
"prettier": "3.3.3", "prettier": "3.3.3",