chore: project configuration (Next.js, Tailwind, TypeScript)

This commit is contained in:
2026-02-22 20:00:21 +01:00
parent 4a3b69babc
commit 8f9674730d
7 changed files with 1870 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "simo",
"version": "1.0.0",
"description": "Simulateur de prêt immobilier - Gratuit et open source",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "^14.2.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"chart.js": "^4.4.7",
"react-chartjs-2": "^5.2.0",
"lz-string": "^1.5.0",
"chartjs-plugin-datalabels": "^2.2.0"
},
"devDependencies": {
"typescript": "^5.4.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/node": "^20.17.0",
"@types/lz-string": "^1.5.0",
"tailwindcss": "^3.4.17",
"postcss": "^8.4.49",
"autoprefixer": "^10.4.20",
"@tailwindcss/forms": "^0.5.10"
}
}