-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.34 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
{
"name": "civaccount",
"version": "3.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "node scripts/fetch-private-data.mjs && node scripts/generate-coverage-stats.mjs",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"validate": "node scripts/validate/validate.mjs",
"validate:verbose": "node scripts/validate/validate.mjs --verbose",
"validate:links": "node scripts/validate/validate.mjs --link-check",
"checksum:update": "node scripts/validate/update-checksums.mjs",
"sync:band-d": "python3 scripts/parse-area-band-d.py && node scripts/sync-band-d.mjs",
"generate:coverage": "node scripts/generate-coverage-stats.mjs",
"generate:provenance": "node scripts/generate-provenance.mjs",
"audit:data": "node scripts/data-audit-log.mjs",
"indexnow:ping": "node scripts/indexnow-ping.mjs",
"indexnow:ping-all": "node scripts/indexnow-ping.mjs --all",
"sitemap:ping": "node scripts/sitemap-ping.mjs",
"seo:citations": "node scripts/seo-citation-monitor.mjs",
"seo:rank": "node scripts/openpagerank-check.mjs",
"seo:rank-csv": "node scripts/openpagerank-check.mjs --csv",
"postbuild": "if [ \"$VERCEL_ENV\" = \"production\" ]; then node scripts/sitemap-ping.mjs --indexnow-only || true; else echo 'sitemap-ping: skipped (only runs on Vercel production builds)'; fi"
},
"dependencies": {
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@supabase/ssr": "^0.10.0",
"@supabase/supabase-js": "^2.101.1",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.37.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^1.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.7.0",
"lucide-react": "^0.542.0",
"next": "^16.1.2",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"sonner": "^2.0.7",
"stripe": "^20.2.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.1.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.8",
"typescript": "^5",
"xlsx": "^0.18.5"
}
}