chore: 🧹 update dependencies

This commit is contained in:
Ravinou 2025-12-04 20:47:39 +01:00
commit 3ff2ace3bb
No known key found for this signature in database
GPG key ID: 25F0EB44D87EBC13
4 changed files with 5083 additions and 2686 deletions

1
next-env.d.ts vendored
View file

@ -1,5 +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/pages/api-reference/config/typescript for more information.

6068
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -13,40 +13,40 @@
"format": "prettier --write \"{Components,Containers,helpers,pages,styles}/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"dependencies": {
"@tabler/icons-react": "^3.34.0",
"@tabler/icons-react": "^3.35.0",
"async-mutex": "^0.5.0",
"bcryptjs": "^3.0.2",
"chart.js": "^4.4.9",
"bcryptjs": "^3.0.3",
"chart.js": "^4.5.1",
"date-fns": "^4.1.0",
"lowdb": "^7.0.1",
"next": "^15.3.4",
"next-auth": "^4.24.10",
"nodemailer": "^6.10.1",
"next": "^16.0.7",
"next-auth": "^4.24.13",
"nodemailer": "^7.0.11",
"nprogress": "^0.2.0",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.63.0",
"react": "^19.2.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.1",
"react-hook-form": "^7.68.0",
"react-select": "^5.10.2",
"react-toastify": "^11.0.5",
"swr": "^2.3.4",
"swr": "^2.3.7",
"use-media": "^1.5.0",
"uuid": "^11.1.0"
"uuid": "^13.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.15.30",
"@types/nodemailer": "^6.4.17",
"@types/node": "^24.10.1",
"@types/nodemailer": "^7.0.4",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.1.8",
"@types/react": "^19.2.7",
"@types/supertest": "^6.0.3",
"eslint-config-next": "^15.5.3",
"eslint-config-next": "^16.0.7",
"husky": "^9.1.7",
"node-mocks-http": "^1.17.2",
"prettier": "^3.6.2",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}

View file

@ -2,10 +2,16 @@
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./*"]
"~/*": [
"./*"
]
},
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
@ -16,9 +22,17 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"types": ["vitest/globals"] // Auto import vitest types
"jsx": "react-jsx",
"types": [
"vitest/globals"
] // Auto import vitest types
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}