3 Commits

Author SHA1 Message Date
0bf58f521b Remove eslint from build 2025-10-26 10:36:26 +03:00
3cfbb158d0 Update to Next.js 16 2025-10-26 10:35:27 +03:00
e65ab2cecc Update all dependencies to v16 2025-10-26 04:30:21 +00:00
8 changed files with 710 additions and 724 deletions

1
.gitignore vendored
View File

@ -130,4 +130,3 @@ dist
.pnp.*
.DS_Store
next-env.d.ts

2
.nvmrc
View File

@ -1 +1 @@
24.11.0
24.10.0

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,3 @@
nodeLinker: node-modules
yarnPath: .yarn/releases/yarn-4.11.0.cjs
yarnPath: .yarn/releases/yarn-4.10.3.cjs

6
next-env.d.ts vendored Normal file
View File

@ -0,0 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

View File

@ -15,16 +15,16 @@
"jest:watch": "jest --watch",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"test": "npx next typegen && npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"test": "npm run prettier:check && npm run lint && npm run typecheck && npm run jest",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@mantine/core": "8.3.7",
"@mantine/hooks": "8.3.7",
"@mantine/core": "8.3.5",
"@mantine/hooks": "8.3.5",
"@next/bundle-analyzer": "^16.0.0",
"@tabler/icons-react": "^3.35.0",
"next": "16.0.1",
"next": "16.0.0",
"react": "19.2.0",
"react-dom": "19.2.0"
},
@ -33,9 +33,9 @@
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.37.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@storybook/addon-themes": "^10.0.0",
"@storybook/nextjs": "^10.0.0",
"@storybook/react": "^10.0.0",
"@storybook/addon-themes": "^9.1.10",
"@storybook/nextjs": "^9.1.10",
"@storybook/react": "^9.1.10",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
@ -47,7 +47,7 @@
"babel-loader": "^10.0.0",
"eslint": "^9.37.0",
"eslint-config-mantine": "^4.0.3",
"eslint-config-next": "16.0.1",
"eslint-config-next": "16.0.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.2.0",
@ -56,12 +56,12 @@
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.2",
"storybook": "^10.0.0",
"storybook": "^9.1.10",
"stylelint": "^16.25.0",
"stylelint-config-standard-scss": "^16.0.0",
"ts-jest": "^29.4.4",
"typescript": "5.9.3",
"typescript-eslint": "^8.46.0"
},
"packageManager": "yarn@4.11.0"
"packageManager": "yarn@4.10.3"
}

View File

@ -10,7 +10,7 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",

803
yarn.lock

File diff suppressed because it is too large Load Diff