feat: initialize mohfarawati app foundation
CI / quality (push) Waiting to run

This commit is contained in:
MOH
2026-03-06 13:53:57 +01:00
parent 30330c4f1e
commit f86b7f39f7
50 changed files with 4615 additions and 152 deletions
+27 -7
View File
@@ -1,26 +1,46 @@
{
"name": "mohfarawati",
"name": "moh-sass",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"prisma:generate": "prisma generate",
"db:migrate": "prisma migrate deploy",
"db:migrate:dev": "prisma migrate dev",
"db:seed": "prisma db seed"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"clsx": "^2.1.1",
"framer-motion": "^12.35.0",
"lucide-react": "^0.577.0",
"next": "14.2.35",
"next-intl": "^4.8.3",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"react": "^18",
"react-dom": "^18",
"next": "14.2.35"
"react-hook-form": "^7.71.2",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/pg": "^8.18.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.35"
"eslint-config-next": "14.2.35",
"postcss": "^8",
"prisma": "^7.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}