fe8eaf75fb
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>
33 lines
785 B
JSON
33 lines
785 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|