feat: initialize product-site app with Next.js, i18n routing, and custom brand configurations

This commit is contained in:
Firman Ramdhani
2026-07-29 15:29:35 +07:00
parent fcea8f221b
commit eb63a48047
32 changed files with 5829 additions and 196 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "product-site",
"version": "0.1.0",
"private": true,
"scripts": {
"copy:brand": "node ../../packages/brand/scripts/copy-brand-assets.js",
"dev": "pnpm run copy:brand && next dev",
"build": "pnpm run copy:brand && next build",
"start": "next start",
"lint": "eslint \"src/**/*.ts*\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@repo/brand": "workspace:*",
"next": "16.2.12",
"next-intl": "^4.13.4",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"tailwindcss": "^4",
"typescript": "^5"
}
}