-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.93 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
{
"name": "ndihub",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typegen": "sanity schema extract && sanity typegen generate",
"test:instasend": "npx tsx docs/tests/test-instasend-basic.ts",
"test:instasend:full": "npx tsx docs/tests/test-instasend.ts",
"test:instasend:webhook": "npx tsx docs/tests/test-intasend-webhook.ts",
"test:instasend:checkout": "npx tsx docs/tests/test-intasend-checkout-data.ts",
"test:currency": "npx tsx docs/tests/test-currency-conversion.ts",
"test:ui": "npx tsx docs/tests/test-ui-currency.ts",
"test:enrollment": "npx tsx docs/tests/test-enrollment-status.ts",
"test:descriptions": "npx tsx docs/tests/test-description-formatting.ts",
"test:layout": "npx tsx docs/tests/test-masterclass-layout.ts",
"test:sanity-masterclass": "tsx docs/tests/test-sanity-masterclass-structure.ts",
"test:masterclass-checkout": "tsx docs/tests/test-masterclass-checkout.ts",
"test:auth-fix": "tsx docs/tests/test-auth-fix.ts",
"test:checkout-debug": "tsx docs/tests/test-masterclass-checkout-debug.ts",
"test:enrollment-refresh": "tsx docs/tests/test-enrollment-refresh.ts",
"test:calendar-invites": "tsx docs/tests/test-google-calendar-invites.ts",
"test:calendar-setup": "tsx docs/tests/test-google-calendar-setup.ts",
"test:manual-invite": "tsx docs/tests/test-manual-invite.ts",
"test:email-service": "tsx docs/tests/test-email-service.ts",
"test:manual-email": "tsx docs/tests/test-manual-email.ts",
"test:admin-dashboard": "tsx docs/tests/test-admin-dashboard.ts",
"test:admin-permissions": "tsx docs/tests/test-admin-permissions.ts",
"test:enrollment-debug": "tsx docs/tests/test-enrollment-debug.ts",
"test:webhook-debug": "tsx docs/tests/test-webhook-debug.ts",
"test:masterclass-titles": "tsx docs/tests/test-masterclass-titles.ts",
"test:event-titles": "tsx docs/tests/test-event-title-fetching.ts"
},
"dependencies": {
"@clerk/nextjs": "^6.25.4",
"@clerk/themes": "^2.3.3",
"@portabletext/react": "^3.2.1",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@sanity/client": "^6.29.1",
"@sanity/image-url": "^1.1.0",
"@sanity/preview-url-secret": "^2.1.13",
"@sanity/vision": "^3.99.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"googleapis": "^144.0.0",
"groq": "^3.99.0",
"ical-generator": "^9.0.0",
"intasend-node": "^1.1.2",
"lucide-react": "^0.483.0",
"next": "15.2.3",
"next-sanity": "^9.12.3",
"next-themes": "^0.4.6",
"ngrok": "5.0.0-beta.2",
"nodemailer": "^7.0.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-player": "^2.16.1",
"sanity": "^3.99.0",
"stripe": "^17.7.0",
"styled-components": "^6.1.19",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20.19.9",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"eslint-config-next": "15.2.3",
"tailwindcss": "^4.1.11",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@clerk/shared",
"sharp"
],
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"ngrok",
"scrollmirror",
"unrs-resolver",
"yarn"
]
}
}