-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.39 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.39 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
{
"name": "sensasi-pos",
"version": "0.0.1",
"versionDate": "2025-11-04",
"private": true,
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true next build",
"dev": "next dev",
"knip": "knip",
"lint": "biome check && tsc --noEmit",
"lint:fix": "tsc --noEmit && biome check --write",
"start": "next start",
"test": "biome check"
},
"dependencies": {
"@heroui/accordion": "^2.2.24",
"@heroui/alert": "^2.2.27",
"@heroui/autocomplete": "^2.3.29",
"@heroui/button": "^2.2.27",
"@heroui/card": "^2.2.25",
"@heroui/checkbox": "^2.3.27",
"@heroui/chip": "^2.2.22",
"@heroui/date-picker": "^2.3.28",
"@heroui/divider": "^2.2.20",
"@heroui/drawer": "^2.2.24",
"@heroui/dropdown": "^2.3.27",
"@heroui/image": "^2.2.17",
"@heroui/input": "^2.4.28",
"@heroui/link": "^2.2.23",
"@heroui/modal": "^2.2.24",
"@heroui/navbar": "^2.2.25",
"@heroui/pagination": "^2.2.24",
"@heroui/popover": "^2.3.27",
"@heroui/select": "^2.4.28",
"@heroui/spinner": "^2.2.24",
"@heroui/switch": "^2.2.24",
"@heroui/system": "^2.4.23",
"@heroui/table": "^2.2.27",
"@heroui/theme": "^2.4.23",
"@heroui/tooltip": "^2.2.24",
"@internationalized/date": "^3.10.0",
"@sentry/nextjs": "^10.30.0",
"@tailwindcss/postcss": "^4.1.18",
"@vercel/analytics": "^1.6.1",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"dexie": "^4.2.1",
"dexie-react-hooks": "^1.1.7",
"framer-motion": "^12.23.26",
"lucide-react": "^0.552.0",
"next": "^16.0.10",
"next-nprogress-bar": "^2.4.7",
"next-themes": "^0.4.6",
"react-barcode-reader": "^0.0.2",
"react-barcode-scanner": "^2.1.0",
"react-hook-form": "^7.68.0",
"react-hot-toast": "^2.6.0",
"react-image-file-resizer": "^0.4.8",
"recharts": "^2.15.4",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"use-debounce": "^10.0.6",
"usehooks-ts": "^3.1.1",
"uuid": "^10.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@next/bundle-analyzer": "^16.0.10",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.19.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"cross-env": "^10.1.0",
"knip": "^5.73.4",
"postcss": "^8.5.6",
"typescript": "^5.9.3"
}
}