mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-13 10:17:35 +00:00
- Bootstrap Next.js 15 project with TypeScript, Tailwind, and App Router - Build full quiz with 5 pop culture questions mapping to 3 personalities - Implement percentage-based results display with ranked breakdown - Apply warm/cozy earthy palette inspired by Claude homepage aesthetic - Components: QuizQuestion, QuizResults with hover states and progress bar
27 lines
530 B
JSON
27 lines
530 B
JSON
{
|
|
"name": "quiz-app",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"next": "16.1.6",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.1.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|