feat: scaffold Next.js 16 web app with Tailwind v4

Sets up apps/web with Next.js 16, React 19, Tailwind CSS v4 (postcss plugin
config, @import syntax), Jest + Testing Library, App Router layout and home page.
2/2 tests passing, build verified.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 14:34:00 +05:30
parent c1efde757d
commit fe8eaf75fb
12 changed files with 1553 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "@tower/web",
"version": "0.0.1",
"scripts": {
"build": "next build",
"dev": "next dev --port 3000",
"start": "next start",
"test": "jest",
"lint": "next lint"
},
"dependencies": {
"@tower/types": "workspace:*",
"@tower/ui": "workspace:*",
"next": "^16.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"postcss": "^8.0.0",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.7.0"
}
}