Files
coolify-examples/nextjs/spa/package.json
peaklabs-dev f8b3c24432 feat(static): improve nextjs static example
- upgrade all dependencies
- upgrade to Tailwind CSS v4
- remove ugly default background
- remove unnecessary default content
- clean up files and remove those that are no longer needed
2025-06-23 21:41:11 +02:00

28 lines
595 B
JSON

{
"name": "nextjs-spa",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.10",
"next": "^15.3.4",
"postcss": "^8.5.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.10"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.4",
"typescript": "^5.8.3"
}
}