-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
140 lines (140 loc) · 5.25 KB
/
package.json
File metadata and controls
140 lines (140 loc) · 5.25 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "ghostclass",
"version": "3.0.7",
"private": true,
"engines": {
"node": ">=22.12.0",
"npm": ">=11"
},
"scripts": {
"dev": "next dev --webpack",
"dev:turbopack": "next dev --turbopack",
"dev:webpack": "next dev --webpack",
"dev:https": "node -e \"const fs=require('fs');const files=['./certificates/localhost-key.pem','./certificates/localhost.pem'];if(files.some(f=>!fs.existsSync(f))){console.error('Error: Missing HTTPS certificates. Expected ./certificates/localhost-key.pem and ./certificates/localhost.pem. Please create these files in the ./certificates directory.');process.exit(1);}\" && next dev --webpack --experimental-https --experimental-https-key ./certificates/localhost-key.pem --experimental-https-cert ./certificates/localhost.pem",
"dev:https:turbopack": "node -e \"const fs=require('fs');const files=['./certificates/localhost-key.pem','./certificates/localhost.pem'];if(files.some(f=>!fs.existsSync(f))){console.error('Error: Missing HTTPS certificates. Expected ./certificates/localhost-key.pem and ./certificates/localhost.pem. Please create these files in the ./certificates directory.');process.exit(1);}\" && next dev --turbopack --experimental-https --experimental-https-key ./certificates/localhost-key.pem --experimental-https-cert ./certificates/localhost.pem",
"build": "next build",
"build:turbopack": "next build --turbopack",
"build:webpack": "next build --webpack",
"start": "next start",
"lint": "eslint src",
"verify-version": "node scripts/verify-version.js",
"bump-version": "node scripts/bump-version.js",
"sync-secrets": "node scripts/sync-secrets.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test:coverage && npm run test:e2e"
},
"browserslist": [
"chrome >= 104",
"firefox >= 104",
"safari >= 15.6",
"edge >= 104",
"samsung >= 19"
],
"overrides": {
"serialize-javascript": "^7.0.4",
"tar": "^7.5.10",
"js-yaml": "^4.1.1",
"rollup": "^4.52.3",
"glob": "^13.0.6",
"source-map": "^0.7.6",
"minimatch": "^10.2.2"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@react-email/components": "^1.0.8",
"@scalar/nextjs-api-reference": "^0.10.0",
"@sentry/nextjs": "^10.41.0",
"@serwist/next": "^9.5.6",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.97.0",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-virtual": "^3.13.21",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.2",
"axios": "^1.13.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.34.3",
"ldrs": "^1.1.9",
"lodash-es": "^4.17.23",
"lru-cache": "^11.2.6",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"nextjs-toploader": "^3.9.17",
"react": "^19.2.4",
"react-day-picker": "^9.13.2",
"react-dom": "^19.2.4",
"react-email": "^5.2.8",
"react-hook-form": "^7.71.2",
"react-markdown": "^10.1.0",
"react-turnstile": "^1.1.5",
"recharts": "^3.7.0",
"resend": "^6.9.2",
"sanitize-html": "^2.17.0",
"server-only": "^0.0.1",
"serwist": "^9.5.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.1",
"tw-animate-css": "^1.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@opentelemetry/context-async-hooks": "^2.6.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.3.5",
"@types/nprogress": "^0.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.0",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"glob": "^13.0.6",
"globals": "^17.3.0",
"happy-dom": "^20.7.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"minimatch": "^10.2.2",
"rimraf": "^6.1.3",
"source-map": "^0.7.6",
"supabase": "^2.76.14",
"tailwindcss": "^4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}