chore(tooling): refresh safe deps and checks

This commit is contained in:
YeonGyu-Kim
2026-05-14 13:46:11 +09:00
parent d16d47a0b4
commit f10251b59d
12 changed files with 188 additions and 80 deletions
+10 -8
View File
@@ -8,11 +8,11 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"app/**/*.{ts,tsx}\" \"components/**/*.{ts,tsx}\" \"lib/**/*.{ts,tsx}\" \"e2e/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"app/**/*.{ts,tsx}\" \"components/**/*.{ts,tsx}\" \"lib/**/*.{ts,tsx}\" \"e2e/**/*.{ts,tsx}\"",
"lint": "biome lint app components lib e2e && eslint \"app/**/*.{ts,tsx}\" \"components/**/*.{ts,tsx}\" \"lib/**/*.{ts,tsx}\" \"e2e/**/*.{ts,tsx}\"",
"lint:fix": "biome lint --write app components lib e2e && eslint --fix \"app/**/*.{ts,tsx}\" \"components/**/*.{ts,tsx}\" \"lib/**/*.{ts,tsx}\" \"e2e/**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type-check": "tsc --noEmit",
"type-check": "tsgo --noEmit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
@@ -31,10 +31,10 @@
"marked": "^18.0.3",
"motion": "^12.38.0",
"next": "15.5.18",
"next-intl": "^4.11.0",
"next-intl": "^4.12.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.5.0",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7"
},
"browserslist": [
@@ -55,9 +55,11 @@
"yaml": "2.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@opennextjs/cloudflare": "^1.19.9",
"@playwright/test": "1.59.1",
"@tailwindcss/postcss": "4.2.4",
"@tailwindcss/postcss": "4.3.0",
"@typescript/native-preview": "7.0.0-dev.20260513.1",
"@types/node": "^25.7.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
@@ -70,9 +72,9 @@
"postcss": "^8.5.14",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "4.2.4",
"tailwindcss": "4.3.0",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.3",
"wrangler": "^4.90.0"
"wrangler": "^4.90.1"
}
}