11 Commits

Author SHA1 Message Date
d82402a2cf chore(deps): pin dependency eslint-config-prettier to 10.1.8
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
Lint / Lint and Check (push) Successful in 9m29s
2025-11-30 16:03:46 +00:00
7b7feea11f chore(deps): update pnpm to v10.24.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 9m29s
2025-11-30 15:01:22 +00:00
2f879b449e chore(deps): update dependency prettier to v3.7.1
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 9m32s
2025-11-30 11:38:42 +00:00
f906749340 chore(deps): update dependency prettier to v3.7.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 9m33s
2025-11-30 09:01:47 +00:00
620765564c fix(deps): update nextjs monorepo to v16.0.5
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 9m32s
2025-11-30 00:01:49 +00:00
cfc52b085e fix(deps): update dependency lucide-react to ^0.555.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 45s
2025-11-29 09:02:31 +00:00
5aa8fce32f chore(deps): update dependency typescript-eslint to v8.48.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 55s
2025-11-29 03:04:42 +00:00
bf2000c49a fix(deps): update nextjs monorepo to v16.0.4
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 35s
2025-11-29 02:06:28 +00:00
cbff054301 chore(deps): update dependency @types/react to v19.2.7
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 38s
2025-11-29 01:05:22 +00:00
c5fbc57a78 chore(deps): update dependency @tanstack/react-query to v5.90.11
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
Lint / Lint and Check (push) Successful in 34s
2025-11-29 00:04:10 +00:00
3173397ad3 Update postcss.config.mjs
All checks were successful
Lint / Lint and Check (push) Successful in 39s
2025-11-26 12:50:01 +01:00
3 changed files with 377 additions and 411 deletions

View File

@@ -29,9 +29,9 @@
"cssnano": "^7.1.2",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.44.7",
"lucide-react": "^0.554.0",
"lucide-react": "^0.555.0",
"nanoid": "^5.1.6",
"next": "16.0.3",
"next": "16.0.5",
"next-plausible": "^3.12.5",
"pg": "^8.16.3",
"pg-native": "^3.5.2",
@@ -46,24 +46,24 @@
"@tailwindcss/postcss": "4.1.17",
"@types/node": "24.10.1",
"@types/pg": "8.15.6",
"@types/react": "19.2.6",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"drizzle-kit": "0.31.7",
"eslint": "9.39.1",
"eslint-config-next": "16.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-config-next": "16.0.5",
"eslint-config-prettier": "10.1.8",
"postcss": "8.5.6",
"prettier": "3.6.2",
"prettier": "3.7.1",
"prettier-plugin-tailwindcss": "0.7.1",
"tailwindcss": "4.1.17",
"turbo": "2.6.1",
"typescript": "5.9.3",
"typescript-eslint": "8.47.0"
"typescript-eslint": "8.48.0"
},
"packageManager": "pnpm@10.23.0",
"packageManager": "pnpm@10.24.0",
"pnpm": {
"overrides": {
"@types/react": "19.2.6",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}

749
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -2,27 +2,6 @@
const config = {
plugins: {
'@tailwindcss/postcss': {},
"postcss-flexbugs-fixes": {
"postcss-preset-env": {
autoprefixer: {
flexbox: "no-2009",
},
stage: 3,
features: {
"custom-properties": false,
},
},
"@fullhuman/postcss-purgecss": {
content: [
"./pages/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
defaultExtractor: (content) => content.match(/[\w-/:]+(?<!:)/g) || [],
safelist: ["html", "body"],
},
},
cssnano: {},
},
};