-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hoor-stylish",
"version": "1.0.0",
"description": "متجر إلكتروني للأزياء الإسلامية - Hoor Stylish Islamic Fashion E-commerce",
"author": "Your Name",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"db:generate": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"lucide-react": "^0.555.0",
"next": "16.0.4",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@prisma/client": "^5.22.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.22",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.4",
"postcss": "^8.5.6",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.18",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}