Update dependencies to the latest version

This commit is contained in:
Vitaly Rtishchev
2025-10-01 15:27:25 +03:00
parent c6079c7741
commit 7a9918204c
3 changed files with 775 additions and 507 deletions

View File

@ -22,46 +22,46 @@
"dependencies": { "dependencies": {
"@mantine/core": "8.3.2", "@mantine/core": "8.3.2",
"@mantine/hooks": "8.3.2", "@mantine/hooks": "8.3.2",
"@next/bundle-analyzer": "^15.5.3", "@next/bundle-analyzer": "^15.5.4",
"@tabler/icons-react": "^3.34.1", "@tabler/icons-react": "^3.35.0",
"next": "15.5.3", "next": "15.5.4",
"react": "19.1.1", "react": "19.1.1",
"react-dom": "19.1.1" "react-dom": "19.1.1"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.28.4", "@babel/core": "^7.28.4",
"@eslint/eslintrc": "^3", "@eslint/eslintrc": "^3",
"@eslint/js": "^9.35.0", "@eslint/js": "^9.36.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0", "@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@storybook/addon-themes": "^9.1.5", "@storybook/addon-themes": "^9.1.10",
"@storybook/nextjs": "^9.1.5", "@storybook/nextjs": "^9.1.10",
"@storybook/react": "^9.1.5", "@storybook/react": "^9.1.10",
"@testing-library/dom": "^10.4.1", "@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0", "@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0", "@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1", "@testing-library/user-event": "^14.6.1",
"@types/eslint-plugin-jsx-a11y": "^6", "@types/eslint-plugin-jsx-a11y": "^6",
"@types/jest": "^30.0.0", "@types/jest": "^30.0.0",
"@types/node": "^24.3.1", "@types/node": "^24.6.1",
"@types/react": "19.1.12", "@types/react": "19.1.16",
"babel-loader": "^10.0.0", "babel-loader": "^10.0.0",
"eslint": "^9.35.0", "eslint": "^9.36.0",
"eslint-config-mantine": "^4.0.3", "eslint-config-mantine": "^4.0.3",
"eslint-config-next": "15.5.3", "eslint-config-next": "15.5.4",
"eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5", "eslint-plugin-react": "^7.37.5",
"jest": "^30.1.3", "jest": "^30.2.0",
"jest-environment-jsdom": "^30.1.2", "jest-environment-jsdom": "^30.2.0",
"postcss": "^8.5.6", "postcss": "^8.5.6",
"postcss-preset-mantine": "1.18.0", "postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1", "postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2", "prettier": "^3.6.2",
"storybook": "^9.1.5", "storybook": "^9.1.10",
"stylelint": "^16.24.0", "stylelint": "^16.24.0",
"stylelint-config-standard-scss": "^16.0.0", "stylelint-config-standard-scss": "^16.0.0",
"ts-jest": "^29.4.1", "ts-jest": "^29.4.4",
"typescript": "5.9.2", "typescript": "5.9.3",
"typescript-eslint": "^8.43.0" "typescript-eslint": "^8.45.0"
}, },
"packageManager": "yarn@4.10.3" "packageManager": "yarn@4.10.3"
} }

View File

@ -1,8 +1,16 @@
{ {
"compilerOptions": { "compilerOptions": {
"types": ["node", "jest", "@testing-library/jest-dom"], "types": [
"node",
"jest",
"@testing-library/jest-dom"
],
"target": "es5", "target": "es5",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@ -16,15 +24,25 @@
"jsx": "preserve", "jsx": "preserve",
"incremental": true, "incremental": true,
"paths": { "paths": {
"@/*": ["./*"] "@/*": [
} "./*"
]
},
"plugins": [
{
"name": "next"
}
]
}, },
"include": [ "include": [
"next-env.d.ts",
"**/*.ts", "**/*.ts",
"**/*.tsx", "**/*.tsx",
".storybook/main.ts", ".storybook/main.ts",
".storybook/preview.tsx" ".storybook/preview.tsx",
"next-env.d.ts",
".next/types/**/*.ts"
], ],
"exclude": ["node_modules"] "exclude": [
"node_modules"
]
} }

1214
yarn.lock

File diff suppressed because it is too large Load Diff