chore: complete initial setup for Next.js project with TypeScript, Tailwind CSS, ESLint, and Prettier; remove unnecessary .DS_Store file

This commit is contained in:
Julien Froidefond
2025-11-27 12:57:36 +01:00
parent 5234428cc3
commit 6d95529579
26 changed files with 11424 additions and 5 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "swot-manager",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"next": "16.0.5",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.0.5",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}