Ajout des fichiers de l'application

This commit is contained in:
Rampeur
2025-08-07 08:12:11 +02:00
parent 16fc6b69a6
commit 8da4b7cb28
193 changed files with 372196 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"name": "adastra-nextjs",
"version": "0.1.0",
"private": true,
"stackblitz": {
"startCommand": "npm start"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"format": "prettier . --write",
"fix": "next lint --fix",
"test": "npm run build",
"openapi-generate": "openapi-typescript ./api/openapi.yml --output ./src/generated/apiSchema.generated.d.ts"
},
"dependencies": {
"@conform-to/react": "^1.2.2",
"@conform-to/zod": "^1.2.2",
"clsx": "^2.1.1",
"bootstrap": "^5.3.7",
"next": "^15.4.5",
"react": "^19.1.1",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.1.1",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"openapi-typescript": "^7.4.1",
"prettier": "^3.3.3",
"typescript": "^5.9.2",
"sass": "^1.89.2"
}
}