Files
nextjs/package.json

38 lines
858 B
JSON
Raw Permalink Normal View History

2024-12-14 14:48:33 +05:30
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-12-16 13:30:44 +05:30
"@hookform/resolvers": "^3.9.1",
"@tanstack/react-query": "^5.62.7",
"axios": "^1.7.9",
"next": "15.1.0",
"next-pwa": "^5.6.0",
2024-12-14 14:48:33 +05:30
"react": "^19.0.0",
2024-12-16 13:30:44 +05:30
"react-confetti": "^6.1.0",
2024-12-14 14:48:33 +05:30
"react-dom": "^19.0.0",
2024-12-16 13:30:44 +05:30
"react-hook-form": "^7.54.1",
"react-icons": "^5.4.0",
"yup": "^1.5.0"
2024-12-14 14:48:33 +05:30
},
"devDependencies": {
2024-12-16 13:30:44 +05:30
"@eslint/eslintrc": "^3",
"@types/next-pwa": "^5.6.9",
2024-12-14 14:48:33 +05:30
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
2024-12-16 13:30:44 +05:30
"daisyui": "^4.12.22",
2024-12-14 14:48:33 +05:30
"eslint": "^9",
"eslint-config-next": "15.1.0",
2024-12-16 13:30:44 +05:30
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
2024-12-14 14:48:33 +05:30
}
}