chore: update project configuration by adding Prisma dependencies, generating Prisma client, and updating .gitignore; remove package-lock.json

This commit is contained in:
Julien Froidefond
2025-11-27 13:01:38 +01:00
parent 6d95529579
commit 68ef3731fa
11 changed files with 849 additions and 6597 deletions

View File

@@ -2,6 +2,9 @@
"name": "swot-manager",
"version": "0.1.0",
"private": true,
"pnpm": {
"onlyBuiltDependencies": ["prisma", "@prisma/engines"]
},
"scripts": {
"dev": "next dev",
"build": "next build",
@@ -9,7 +12,9 @@
"lint": "eslint"
},
"dependencies": {
"@prisma/client": "^7.0.1",
"next": "16.0.5",
"prisma": "^7.0.1",
"react": "19.2.0",
"react-dom": "19.2.0"
},
@@ -18,6 +23,7 @@
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.5",
"eslint-config-prettier": "^10.1.8",