-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.08 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.08 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
106
{
"private": true,
"version": "1.0.0",
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "next lint --fix",
"build": "next build --turbopack",
"start": "next start",
"lint": "next lint --fix",
"type-check": "tsc --noEmit",
"prepare": "husky",
"test": "vitest run"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.2.0",
"@auth0/nextjs-auth0": "^4.6.1",
"@babel/standalone": "^7.28.2",
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@nextui-org/react": "2.4.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@react-pdf/renderer": "^4.3.0",
"@stripe/react-stripe-js": "^3.9.0",
"@stripe/stripe-js": "^7.8.0",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "^2.50.0",
"@tabler/icons-react": "^3.34.1",
"@tanstack/react-table": "^8.21.3",
"@uiw/react-codemirror": "^4.24.2",
"@vercel/analytics": "1.3.1",
"@vercel/speed-insights": "1.0.12",
"autoprefixer": "10.4.17",
"caniuse-lite": "^1.0.30001731",
"chart.js": "^4.5.0",
"class-variance-authority": "0.7.0",
"clsx": "^2.1.1",
"cobe": "^0.6.4",
"exceljs": "^4.4.0",
"geist": "1.2.1",
"html5-qrcode": "^2.3.8",
"jsonwebtoken": "9.0.2",
"jspdf": "^3.0.1",
"lucide-react": "0.376.0",
"motion": "^12.23.12",
"next": "15.4.6",
"next-intl": "^4.3.4",
"plugini": "^1.0.3",
"postcss": "8.4.33",
"qr-scanner": "^1.4.2",
"qrcode": "^1.5.4",
"qss": "^3.0.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hook-form": "7.51.3",
"react-resizable-panels": "^3.0.4",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^3.0.2",
"resend": "3.4.0",
"stripe": "^18.4.0",
"swr": "2.2.5",
"tailwind-merge": "^3.3.1",
"tailwind-scrollbar": "^4.0.2",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "1.0.7",
"typescript": "5.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/babel__standalone": "^7.1.9",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "20.11.5",
"@types/qrcode": "^1.5.5",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitest/ui": "^3.2.4",
"encoding": "0.1.13",
"eslint": "8.57.0",
"eslint-config-next": "15.4.6",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"overrides": {
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7"
}
}