my-simple-blog-frontend-nextjs/package.json

29 lines
603 B
JSON
Raw Normal View History

2024-10-16 12:40:51 +03:00
{
"name": "my-blog-frontend-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-10-16 21:12:35 +03:00
"@nextui-org/react": "^2.4.8",
"framer-motion": "^11.11.9",
"next": "14.2.15",
2024-10-16 12:40:51 +03:00
"react": "^18",
2024-10-16 21:12:35 +03:00
"react-dom": "^18"
2024-10-16 12:40:51 +03:00
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-10-16 21:12:35 +03:00
"eslint": "^8",
"eslint-config-next": "14.2.15",
2024-10-16 12:40:51 +03:00
"postcss": "^8",
"tailwindcss": "^3.4.1",
2024-10-16 21:12:35 +03:00
"typescript": "^5"
2024-10-16 12:40:51 +03:00
}
}