forked from sensasi-apps/sensasi-pos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 KB
/
package.json
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
{
"name": "sensasi-pos",
"version": "0.0.1",
"versionDate": "2024-09-16",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc && next lint",
"lint:fix": "tsc && next lint --fix",
"check:update": "ncu",
"update": "ncu -u -t patch && npm install",
"update:minor": "ncu -u -t minor && npm install",
"update:major": "ncu -u && npm install"
},
"dependencies": {
"@nextui-org/react": "^2.4.8",
"@sentry/nextjs": "^8.39.0",
"@vercel/analytics": "^1.3.2",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"dexie": "^4.0.9",
"dexie-react-hooks": "^1.1.7",
"framer-motion": "^11.11.10",
"lucide-react": "^0.454.0",
"next": "15.0.2",
"next-nprogress-bar": "^2.3.14",
"next-themes": "^0.3.0",
"nextui-alert": "^0.1.5",
"react": "^18",
"react-barcode-reader": "^0.0.2",
"react-barcode-scanner": "^2.1.0",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"react-image-file-resizer": "^0.4.8",
"recharts": "^2.13.2",
"tailwind-merge": "^2.5.4",
"use-debounce": "^10.0.4",
"uuid": "^10.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.13.0",
"eslint-config-next": "15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-check-updates": "^17.1.4",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}