-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.56 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "stock-inventory",
"version": "2.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"postinstall": "npx prisma generate",
"build": "npx prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"prisma": "prisma",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:push": "prisma db push",
"prisma:studio": "prisma studio",
"script:check-all-data": "tsx scripts/check-all-data.ts",
"script:delete-all-data": "tsx scripts/delete-all-data.ts",
"script:delete-all-suppliers": "tsx scripts/delete-all-suppliers.ts",
"script:delete-all-categories": "tsx scripts/delete-all-categories.ts",
"script:delete-user": "tsx scripts/delete-user.ts",
"script:backfill-order-stock": "tsx scripts/backfill-order-stock.ts",
"script:check-order-stock": "tsx scripts/check-order-product-stock.ts",
"script:fix-product2-stock": "tsx scripts/fix-product2-stock.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "^6.4.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.34.0",
"@stripe/stripe-js": "^8.7.0",
"@tanstack/query-sync-storage-persister": "^5.90.19",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-query-devtools": "^5.91.2",
"@tanstack/react-query-persist-client": "^5.90.19",
"@tanstack/react-table": "^8.20.5",
"@types/cookies": "^0.9.0",
"@types/papaparse": "^5.3.16",
"@types/qrcode": "^1.5.5",
"@upstash/qstash": "^2.8.4",
"@upstash/redis": "^1.36.1",
"autoprefixer": "^10.4.20",
"axios": "^1.8.3",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cookies": "^0.9.1",
"date-fns": "^4.1.0",
"exceljs": "^4.4.0",
"@imagekit/nodejs": "^7.3.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"jspdf": "^4.0.0",
"jspdf-autotable": "^5.0.7",
"lucide-react": "^0.562.0",
"mongodb": "^4.17.2",
"next": "^16.0.0",
"next-auth": "^5.0.0-beta.30",
"next-themes": "^0.4.3",
"papaparse": "^5.5.3",
"qrcode": "^1.5.4",
"react": "^19.2.3",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.3",
"react-hook-form": "^7.53.2",
"react-icons": "^5.3.0",
"react-number-format": "^5.4.2",
"recharts": "^3.1.2",
"shippo": "^2.17.4",
"stripe": "^20.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2",
"zustand": "^5.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/exceljs": "^0.5.3",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.0.0",
"postcss": "^8.5.3",
"prisma": "^6.4.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5"
},
"overrides": {
"minimatch": ">=10.2.1",
"glob": ">=11.0.0",
"rimraf": "^5.0.5"
}
}