npm update
All checks were successful
Next.js App CI / docker (push) Successful in 4m51s

This commit is contained in:
2025-12-08 21:12:47 +01:00
parent e3671ca7e2
commit 13e4ccce18
3 changed files with 1373 additions and 1005 deletions

View File

@@ -9,31 +9,31 @@
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"@radix-ui/react-avatar": "^1.1.10", "@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-navigation-menu": "^1.2.14", "@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-separator": "^1.1.7", "@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3", "@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6", "@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8", "@radix-ui/react-tooltip": "^1.2.8",
"@retorquere/bibtex-parser": "^9.0.21", "@retorquere/bibtex-parser": "^9.0.26",
"@tailwindcss/typography": "^0.5.18", "@tailwindcss/typography": "^0.5.19",
"cheerio": "^1.1.2", "cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1", "class-variance-authority": "^0.7.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"culori": "^4.0.2", "culori": "^4.0.2",
"gray-matter": "^4.0.3", "gray-matter": "^4.0.3",
"lucide-react": "^0.544.0", "lucide-react": "^0.556.0",
"mdx-bundler": "^10.1.1", "mdx-bundler": "^10.1.1",
"motion": "^12.23.16", "motion": "^12.23.25",
"next": "15.5.3", "next": "16.0.7",
"next-themes": "^0.4.6", "next-themes": "^0.4.6",
"qrcode": "^1.5.4", "qrcode": "^1.5.4",
"react": "19.1.1", "react": "19.2.1",
"react-dom": "19.1.1", "react-dom": "19.2.1",
"react-icons": "^5.5.0", "react-icons": "^5.5.0",
"react-markdown": "^10.1.0", "react-markdown": "^10.1.0",
"recharts": "3.2.1", "recharts": "3.5.1",
"rehype-pretty-code": "^0.14.1", "rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0", "rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1", "rehype-stringify": "^10.0.1",
@@ -42,24 +42,24 @@
"remark-parse": "^11.0.0", "remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2", "remark-rehype": "^11.1.2",
"rough-notation": "^0.5.1", "rough-notation": "^0.5.1",
"shiki": "^3.13.0", "shiki": "^3.19.0",
"tailwind-merge": "^3.3.1", "tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"unified": "^11.0.5" "unified": "^11.0.5"
}, },
"devDependencies": { "devDependencies": {
"@eslint/eslintrc": "^3.3.1", "@eslint/eslintrc": "^3.3.3",
"@tailwindcss/postcss": "^4.1.13", "@tailwindcss/postcss": "^4.1.17",
"@types/culori": "^4.0.1", "@types/culori": "^4.0.1",
"@types/node": "^24.5.2", "@types/node": "^24.10.1",
"@types/qrcode": "^1.5.5", "@types/qrcode": "^1.5.6",
"@types/react": "^19.1.13", "@types/react": "^19.2.7",
"@types/react-dom": "^19.1.9", "@types/react-dom": "^19.2.3",
"eslint": "^9.36.0", "eslint": "^9.39.1",
"eslint-config-next": "15.5.3", "eslint-config-next": "16.0.7",
"tailwindcss": "^4.1.13", "tailwindcss": "^4.1.17",
"tw-animate-css": "^1.3.8", "tw-animate-css": "^1.4.0",
"typescript": "^5.9.2" "typescript": "^5.9.3"
}, },
"pnpm": { "pnpm": {
"onlyBuiltDependencies": [ "onlyBuiltDependencies": [

2306
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2017", "target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@@ -11,7 +15,7 @@
"moduleResolution": "bundler", "moduleResolution": "bundler",
"resolveJsonModule": true, "resolveJsonModule": true,
"isolatedModules": true, "isolatedModules": true,
"jsx": "preserve", "jsx": "react-jsx",
"incremental": true, "incremental": true,
"plugins": [ "plugins": [
{ {
@@ -19,9 +23,19 @@
} }
], ],
"paths": { "paths": {
"@/*": ["./*"] "@/*": [
"./*"
]
} }
}, },
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "include": [
"exclude": ["node_modules"] "next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
} }