Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,24 @@
"@types/nodemailer": "6.4.19",
"bcryptjs": "3.0.2",
"googleapis": "150.0.1",
"http-status-codes": "2.3.0",
"http-status-codes": "catalog:",
"jsonwebtoken": "9.0.2",
"next": "15.3.5",
"next": "catalog:",
"nodemailer": "7.0.5",
"payload": "3.45.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react": "catalog:",
"react-dom": "catalog:",
"sharp": "0.34.3",
"zod": "3.25.76"
"zod": "catalog:"
},
"devDependencies": {
"@repo/shared": "workspace:*",
"@repo/test-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/jsonwebtoken": "9.0.9",
"@types/node": "22.15.21",
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5",
"typescript": "5.9.2"
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"typescript": "catalog:"
}
}
36 changes: 36 additions & 0 deletions apps/frontend/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,42 @@ const config = (async () => {
},
// Need this to allow static site generation to work with SSG hosting
trailingSlash: true,
// Performance optimizations
experimental: {
optimizePackageImports: ["@yamada-ui/react", "@yamada-ui/lucide"],
},
// Turbopack configuration (now stable)
turbopack: {
rules: {
"*.svg": {
loaders: ["@svgr/webpack"],
as: "*.js",
},
},
},
// Compiler optimizations
compiler: {
removeConsole: process.env.NODE_ENV === "production",
},
// Optimize bundle
webpack: (config, { dev }) => {
if (dev) {
// Faster development builds
config.watchOptions = {
poll: 1000,
aggregateTimeout: 300,
}
config.cache = {
type: "filesystem",
buildDependencies: {
config: [__filename],
tsconfig: ["./tsconfig.json"],
packageJson: ["./package.json"],
},
}
}
return config
},
}

return nextConfig
Expand Down
32 changes: 16 additions & 16 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,29 +18,29 @@
"test:ui": "cross-env NODE_ENV=test vitest --ui --coverage"
},
"dependencies": {
"@hookform/resolvers": "5.1.1",
"@hookform/resolvers": "catalog:",
"@repo/shared": "workspace:*",
"@repo/theme": "workspace:*",
"@repo/ui": "workspace:*",
"@tanstack/react-query": "5.81.5",
"@yamada-ui/lucide": "1.10.5",
"@yamada-ui/react": "1.7.8",
"dayjs": "1.11.18",
"http-status-codes": "2.3.0",
"next": "15.3.5",
"nuqs": "2.4.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hook-form": "7.60.0",
"zod": "3.25.76"
"@tanstack/react-query": "catalog:",
"@yamada-ui/lucide": "catalog:",
"@yamada-ui/react": "catalog:",
"dayjs": "catalog:",
"http-status-codes": "catalog:",
"next": "catalog:",
"nuqs": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-hook-form": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@cloudflare/next-on-pages": "1.13.12",
"@repo/test-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/node": "22.15.21",
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5",
"typescript": "5.9.2"
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"typescript": "catalog:"
}
}
3 changes: 3 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"guldo",
"Hiragino",
"Hiwa",
"hookform",
"horizontalrule",
"HTMLUI",
"Hydrateable",
Expand All @@ -81,6 +82,7 @@
"linktr",
"linktree",
"Linktree",
"lucide",
"maximus",
"Meiryo",
"Menlo",
Expand Down Expand Up @@ -120,6 +122,7 @@
"superfly",
"suscipit",
"svgs",
"tanstack",
"taroj",
"tempor",
"tincidunt",
Expand Down
8 changes: 4 additions & 4 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
},
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"zod": "3.25.76"
"zod": "catalog:"
},
"dependencies": {
"@tanstack/react-query": "5.81.5",
"@tanstack/react-query": "catalog:",
"date-fns": "4.1.0",
"dayjs": "1.11.18",
"next": "15.3.5"
"dayjs": "catalog:",
"next": "catalog:"
}
}
2 changes: 1 addition & 1 deletion packages/theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
},
"devDependencies": {
"@repo/typescript-config": "workspace:*",
"typescript": "5.9.2"
"typescript": "catalog:"
}
}
14 changes: 12 additions & 2 deletions packages/typescript-config/base.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ES2022"
"target": "ES2022",
"tsBuildInfoFile": ".tsbuildinfo",
"assumeChangesOnlyAffectDirectDependencies": true
},
"exclude": ["node_modules"]
"exclude": [
"node_modules",
"**/node_modules",
"**/.next",
"**/dist",
"**/build",
"**/coverage",
"**/.turbo"
]
}
38 changes: 19 additions & 19 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@
"test:ui": "cross-env NODE_ENV=test vitest --ui --coverage"
},
"dependencies": {
"@hookform/resolvers": "5.1.1",
"@hookform/resolvers": "catalog:",
"@repo/shared": "workspace:*",
"@repo/theme": "workspace:*",
"@storybook/nextjs-vite": "9.1.3",
"@tanstack/react-query": "5.81.5",
"@tanstack/react-query-devtools": "5.81.5",
"@yamada-ui/calendar": "1.8.18",
"@yamada-ui/carousel": "2.1.13",
"@yamada-ui/lucide": "1.10.5",
"@yamada-ui/react": "1.7.8",
"@yamada-ui/table": "1.3.15",
"dayjs": "1.11.18",
"next": "15.3.5",
"nuqs": "2.4.3",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hook-form": "7.60.0",
"@tanstack/react-query": "catalog:",
"@tanstack/react-query-devtools": "catalog:",
"@yamada-ui/calendar": "catalog:",
"@yamada-ui/carousel": "catalog:",
"@yamada-ui/lucide": "catalog:",
"@yamada-ui/react": "catalog:",
"@yamada-ui/table": "catalog:",
"dayjs": "catalog:",
"next": "catalog:",
"nuqs": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-hook-form": "catalog:",
"storybook": "9.1.3",
"zod": "3.25.76"
"zod": "catalog:"
},
"devDependencies": {
"@mdx-js/react": "3.1.0",
Expand All @@ -53,10 +53,10 @@
"@storybook/addon-queryparams": "7.0.1",
"@storybook/react": "9.1.3",
"@turbo/gen": "2.5.3",
"@types/node": "22.15.21",
"@types/react": "19.1.5",
"@types/react-dom": "19.1.5",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"storybook-dark-mode": "4.0.2",
"typescript": "5.9.2"
"typescript": "catalog:"
}
}
Loading