-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.66 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.66 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
{
"name": "dk24",
"description": "We are connecting college tech communities to learn and build together in public.",
"version": "1.0.1",
"private": true,
"scripts": {
"preinstall": "node scripts/check-package-manager.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "biome format",
"format:write": "biome format --write",
"check": "biome check --write .",
"lint": "biome lint",
"lint:write": "biome lint --write",
"type-check": "tsc --noEmit",
"prepare": "husky",
"report:monthly": "node scripts/posthog-report.js --month",
"report:weekly": "node scripts/posthog-report.js --week"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"biome format --write",
"biome lint"
],
"!(package-lock).json": [
"biome format --write"
]
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@internationalized/date": "^3.12.1",
"@radix-ui/react-checkbox": "^1.3.3",
"@opentelemetry/api-logs": "^0.215.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.215.0",
"@opentelemetry/resources": "^2.7.0",
"@opentelemetry/sdk-logs": "^0.215.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@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-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.4.2",
"framer-motion": "^12.38.0",
"google-auth-library": "^10.6.2",
"google-spreadsheet": "^5.2.0",
"lucide-react": "^0.518.0",
"next": "^15.5.15",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.5",
"posthog-js": "^1.369.3",
"react": "^19.2.5",
"react-aria-components": "^1.17.0",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.1",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"zod": "^3.25.76"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": "^22.0.0 || ^24.0.0",
"pnpm": "10.30.3"
},
"devDependencies": {
"@biomejs/biome": "2.0.6",
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3"
}
}