portfolio/package.json

30 lines
632 B
JSON
Raw Permalink Normal View History

2026-03-22 14:14:05 +00:00
{
2026-04-30 05:57:24 +00:00
"name": "portfolio",
2026-03-22 14:14:05 +00:00
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2026-06-18 18:21:43 +00:00
"lint": "biome check",
"format": "biome format --write"
2026-03-22 14:14:05 +00:00
},
"dependencies": {
2026-06-19 22:19:58 +00:00
"@vercel/analytics": "^2.0.1",
2026-06-18 18:21:43 +00:00
"biome": "^0.3.3",
2026-04-30 05:57:24 +00:00
"next": "16.2.4",
2026-03-22 14:14:05 +00:00
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
2026-04-30 05:57:24 +00:00
"eslint-config-next": "16.2.4",
2026-03-22 14:14:05 +00:00
"tailwindcss": "^4",
"typescript": "^5"
}
}