first commit

This commit is contained in:
a.alinaghipour
2026-04-05 15:53:20 +03:30
commit aa9ed69dd2
96 changed files with 7721 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^6.19.3",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"bcryptjs": "^3.0.3",
"next": "^16.2.2",
"next-auth": "^4.24.13",
"pg": "^8.20.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/pg": "^8.20.0",
"prisma": "^6.19.3",
"ts-node": "^10.9.2"
}
}