- Remove vitest and @vitest/coverage-v8 testing framework dependencies - Remove fast-check property-based testing library - Update @windfonts/chinese-fonts from ^1.0.7 to ^1.0.9 - Fix code formatting and indentation in font-detail-content.tsx - Simplify page title metadata in layout.tsx from full description to brand name - Remove trailing newline in .vscode/settings.json for consistency - Clean up unused testing infrastructure to reduce bundle size and maintenance overhead
68 lines
2 KiB
JSON
68 lines
2 KiB
JSON
{
|
|
"name": "windfonts-vault",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build --turbopack",
|
|
"start": "next start",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
"prepare": "husky",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:push": "drizzle-kit push",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"db:studio": "drizzle-kit studio"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"@libsql/client": "^0.15.15",
|
|
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
"@radix-ui/react-checkbox": "^1.3.3",
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-label": "^2.1.8",
|
|
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"@radix-ui/react-separator": "^1.1.8",
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@radix-ui/react-tabs": "^1.1.13",
|
|
"@windfonts/chinese-fonts": "^1.0.9",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"drizzle-kit": "^0.31.7",
|
|
"drizzle-orm": "^0.36.4",
|
|
"lucide-react": "^0.554.0",
|
|
"next": "15.5.6",
|
|
"next-auth": "^5.0.0-beta.29",
|
|
"next-themes": "^0.4.6",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"react-hook-form": "^7.66.1",
|
|
"sonner": "^2.0.7",
|
|
"tailwind-merge": "^3.4.0",
|
|
"winston": "^3.18.3",
|
|
"zod": "^3.25.76",
|
|
"zustand": "^5.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/eslintrc": "^3",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.5.6",
|
|
"eslint-config-prettier": "^9.1.2",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^15.5.2",
|
|
"prettier": "^3.6.2",
|
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
"tailwindcss": "^4",
|
|
"tsx": "^4.20.6",
|
|
"tw-animate-css": "^1.4.0",
|
|
"typescript": "^5"
|
|
}
|
|
}
|