-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.8 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
{
"name": "open-pos",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"gen:stock": "bunx swagger-typescript-api -p http://127.0.0.1:8000/api/openapi.json -o ./generated/stock",
"gen:all": "bun gen:stock",
"lint": "bun biome lint ./src",
"lint:all": "bun biome check ./src",
"lint:fix": "bun biome check --apply ./src",
"biome": "bunx @biomejs/biome"
},
"dependencies": {
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^6.1.8",
"@fullcalendar/interaction": "^6.1.8",
"@fullcalendar/react": "^6.1.8",
"@fullcalendar/timegrid": "^6.1.8",
"@radix-ui/react-popover": "1.0.6",
"@radix-ui/react-tooltip": "^1.0.6",
"@stripe/stripe-js": "^1.54.1",
"@t3-oss/env-nextjs": "^0.7.1",
"@tanstack/react-table": "^8.9.3",
"@types/node": "18.11.10",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"eslint": "8.28.0",
"eslint-config-next": "13.0.6",
"fs": "0.0.1-security",
"https": "^1.0.0",
"jotai": "^2.2.2",
"lodash": "^4.17.21",
"lucide-react": "^0.216.0",
"million": "2.6.0-beta.2",
"moment": "^2.29.4",
"nanoid": "^4.0.2",
"next": "13.4.13",
"react": "18.2.0",
"react-barcode-reader": "^0.0.2",
"react-dom": "18.2.0",
"react-feather": "^2.0.10",
"sonner": "^0.6.2",
"stripe": "^12.16.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"typescript": "4.9.3",
"url": "^0.11.1",
"uuid": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/uuid": "^9.0.2",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3"
}
}