-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 878 Bytes
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
{
"name": "inventory-pro",
"version": "1.9.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.0",
"lucide-react": "^0.363.0",
"next": "14.1.4",
"next-auth": "^4.24.13",
"react": "^18",
"react-barcode": "^1.5.3",
"react-dom": "^18",
"tailwind-merge": "^2.2.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"postcss": "^8",
"prisma": "^5.11.0",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}