-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ituscheduler",
"type": "module",
"version": "3.1.1",
"license": "GPL-3.0-or-later",
"engines": {
"node": "^22 || ^23",
"pnpm": "^9 || ^10"
},
"scripts": {
"dev": "astro dev",
"build": "SENTRY_RELEASE=${VERCEL_GIT_COMMIT_SHA:-$(git rev-parse HEAD)} && astro build",
"check": "astro check",
"sb": "supabase",
"sb-db": "supabase db diff --schema public -f migration",
"sb-types": "supabase gen types typescript --project-id bhaehrqidxxgforajbtn > src/types/database.types.ts",
"vercel": "vercel",
"trigger": "pnpm dlx trigger.dev@latest"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.1.6",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/vercel": "^8.0.4",
"@nanostores/react": "^0.8.4",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.7",
"@sentry/astro": "^8.51.0",
"@sentry/browser": "^8.51.0",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.48.1",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.0",
"@tanstack/query-core": "5.64.2",
"@tanstack/react-query": "5.64.2",
"@trigger.dev/sdk": "3.3.12",
"@trigger.dev/supabase": "3.3.12",
"astro": "^5.1.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"dayjs": "^1.11.13",
"globby": "^14.0.2",
"lucide-react": "^0.469.0",
"nanostores": "^0.11.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tanstack/react-query-devtools": "5.64.2",
"@trigger.dev/build": "3.3.12",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"supabase": "^2.6.8",
"typescript": "^5.7.3",
"vercel": "^39.3.0",
"vite": "^6.0.11"
},
"pnpm": {
"onlyBuiltDependencies": [
"protobufjs",
"supabase",
"esbuild",
"sharp",
"@sentry/cli"
]
}
}