-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"name": "startupvo1",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"test:lighthouse": "lhci autorun"
},
"dependencies": {
"@marsidev/react-turnstile": "^1.5.2",
"@sentry/nextjs": "^10.55.0",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.2",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"clsx": "^2.1.1",
"lucide-react": "^1.17.0",
"next": "^14.2.35",
"papaparse": "^5.5.3",
"react": "^18",
"react-dom": "^18",
"resend": "^6.12.4",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.60.0",
"@types/node": "^20",
"@types/papaparse": "^5.5.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vitest": "^4.1.7"
},
"overrides": {
"tmp": "0.2.6",
"uuid": "11.1.1",
"glob": "11.1.0",
"minimatch": "9.0.7"
}
}