feat: create Chip component for displaying technology tags feat: implement ExperienceCard component to showcase job experiences feat: add Experience component to list multiple job experiences feat: create Footer component with social links and copyright information feat: implement Hero component for the landing section with social links feat: add ImageCarousel component for displaying project images feat: create Navbar component with scroll effect and navigation links feat: implement ProjectItem component to display individual project details feat: add Skills component to showcase technical skills feat: create data module with skills, jobs, and projects information feat: define types for Skill, Job, and Project in types module chore: update package.json with new dependencies for Tailwind CSS and Lucide icons chore: add CV PDF file to public directory chore: remove unused SVG files from public directory chore: add new images for background and hero sections feat: implement formatDate utility function for date formatting
33 lines
762 B
JSON
33 lines
762 B
JSON
{
|
|
"name": "gabrielkaszewski-next",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build --turbopack",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/typography": "^0.5.16",
|
|
"lucide-react": "^0.542.0",
|
|
"next": "15.5.2",
|
|
"react": "19.1.0",
|
|
"react-dom": "19.1.0",
|
|
"remark": "^15.0.1",
|
|
"remark-html": "^16.0.1",
|
|
"tailwindcss-motion": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@tailwindcss/postcss": "^4",
|
|
"tailwindcss": "^4",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "15.5.2",
|
|
"@eslint/eslintrc": "^3"
|
|
}
|
|
}
|