-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.42 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
{
"name": "monit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings 0",
"db:generate": "drizzle-kit generate",
"db:apply": "node scripts/db-apply.mjs",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test": "node --import tsx tests/run-tests.ts",
"test:integration:account-deletion": "node --import tsx tests/integration/account-deletion.test.ts",
"test:format": "node --import tsx tests/unit/format.test.ts",
"test:validation": "node --import tsx tests/unit/validation.test.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:report": "playwright show-report",
"verify:deployment": "node --import tsx scripts/verify-deployment.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@polar-sh/better-auth": "^1.8.4",
"@polar-sh/sdk": "^0.47.0",
"@sentry/nextjs": "^10.66.0",
"@tanstack/react-query": "^5.101.2",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"better-auth": "^1.6.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.2",
"exceljs": "^4.4.0",
"lucide-react": "^1.25.0",
"next": "^16.2.10",
"next-intl": "^4.13.2",
"pg": "^8.22.0",
"radix-ui": "^1.6.3",
"react": "19.2.7",
"react-dom": "19.2.7",
"resend": "^6.17.2",
"tailwind-merge": "^3.6.0",
"web-push": "^3.6.7"
},
"optionalDependencies": {
"@vercel/blob": "^2.6.1"
},
"overrides": {
"esbuild": "0.25.12",
"postcss": "8.5.25",
"sharp": "^0.35.3",
"tsx": {
"esbuild": "0.28.1"
},
"undici": "^6.27.0",
"uuid": "^11.1.1"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@tanstack/react-query-devtools": "^5.101.2",
"@types/node": "^26.1.1",
"@types/pg": "^8.20.0",
"@types/react": "19.2.17",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3"
}
}