-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.88 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.88 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
{
"name": "volunteeermatch-app",
"version": "0.26.2.3",
"private": true,
"scripts": {
"dev": "cross-env PORT=3005 next dev --turbo",
"postinstall": "prisma generate",
"build": "sh scripts/vercel-build.sh",
"start": "next start",
"lint": "biome check .",
"format": "biome format src docs prisma/schema.prisma --write",
"check": "biome check src docs prisma/schema.prisma --write",
"seed": "tsx prisma/seed.ts",
"seed:production": "cross-env NODE_ENV=production tsx prisma/seed-production.ts",
"seed:dev": "tsx prisma/seed-dev.ts",
"backfill:activity": "tsx scripts/backfill-activity.ts",
"backfill:default-questions": "tsx scripts/backfill-default-questions.ts",
"script:geocode-backfill": "tsx scripts/geocode-backfill.ts",
"reencrypt-tokens": "tsx scripts/reencrypt-tokens.ts",
"admin:grant": "tsx scripts/admin-grant.ts",
"admin:revoke": "tsx scripts/admin-grant.ts --revoke",
"seed:platform-admins": "tsx prisma/scripts/seed-platform-admins.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:scripts": "vitest run --config vitest.scripts.config.ts",
"test:integration": "vitest run --config vitest.integration.config.mts",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-pg": "^7.7.0",
"@prisma/client": "^7.7.0",
"@prisma/client-runtime-utils": "^7.7.0",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-pdf/renderer": "^4.5.1",
"@sentry/nextjs": "^10.49.0",
"@tanstack/react-query": "^5.99.2",
"@trpc/client": "^11.16.0",
"@trpc/react-query": "^11.16.0",
"@trpc/server": "^11.16.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^1.6.1",
"@vercel/functions": "^3.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cross-env": "^10.1.0",
"html5-qrcode": "^2.3.8",
"leaflet": "^1.9.4",
"lucide-react": "^0.563.0",
"next": "^16.2.6",
"next-auth": "^4.24.14",
"next-themes": "^0.4.6",
"nodemailer": "^8.0.5",
"pg": "^8.20.0",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-hook-form": "^7.73.1",
"react-leaflet": "^5.0.0",
"resend": "^4.8.0",
"sonner": "^2.0.7",
"stripe": "^20.4.1",
"superjson": "^2.2.6",
"tailwind-merge": "^3.5.0",
"vaul": "^1.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@storybook/addon-themes": "^10.3.5",
"@storybook/react": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/leaflet": "^1.9.21",
"@types/node": "^20.19.39",
"@types/pg": "8.11.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"dotenv": "^17.4.2",
"jsdom": "^25.0.1",
"prisma": "^7.7.0",
"storybook": "^10.3.5",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^4.1.5"
},
"prisma": {
"seed": "node prisma/seed.cjs"
},
"pnpm": {
"overrides": {
"@types/pg": "8.11.11"
}
}
}