-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.89 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.89 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
{
"name": "polisee",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:test": "node scripts/db-utils.js test",
"db:status": "node scripts/db-utils.js status",
"db:list": "node scripts/db-utils.js list",
"db:cleanup": "node scripts/db-utils.js cleanup",
"db:migrate": "echo 'Run the SQL in supabase_migration_manual.sql in your Supabase dashboard'",
"db:migrate:user-preferences": "./scripts/run-migration.sh",
"db:migrate:signatures": "./scripts/run-signature-migration.sh",
"db:test:signatures": "node scripts/test-corrected-signature-tables.js",
"db:pull": "supabase db pull",
"db:types": "supabase gen types typescript --project-id lsmiliwwucqergiigqxd --schema public > src/types/database.ts",
"supabase:status": "supabase status",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"security:scan": "gitleaks detect --source . --verbose",
"security:scan-staged": "gitleaks protect --source . --verbose",
"security:scan-commits": "gitleaks detect --source . --log-level info",
"security:baseline": "gitleaks detect --source . --baseline-path .gitleaks-baseline.json",
"security:scan-ci": "gitleaks detect --source . --verbose --exit-code 2",
"security:trufflehog": "docker run --rm -v \"$PWD:/pwd\" trufflesecurity/trufflehog:latest git file:///pwd --only-verified",
"security:full": "npm run security:scan && npm run security:trufflehog",
"precommit": "npm run security:scan-staged",
"scraper:install": "cd backend && pip install -r requirements.txt",
"scraper:setup": "echo 'Please add your Congress.gov API key to your root .env file'",
"scraper:test": "node scripts/congress-scraper.js test",
"scraper:initial": "node scripts/congress-scraper.js initial",
"scraper:daily": "node scripts/congress-scraper.js daily",
"scraper:scheduler": "node scripts/congress-scraper.js scheduler",
"scraper:search": "node scripts/congress-scraper.js search",
"scraper:stats": "node scripts/congress-scraper.js stats",
"scraper:help": "node scripts/congress-scraper.js help",
"ai:batch-summaries": "node scripts/batch-summaries.js",
"ai:batch-status": "node scripts/batch-summaries.js --status-only",
"ai:batch-force": "node scripts/batch-summaries.js --force-regenerate"
},
"dependencies": {
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/supabase-js": "^2.50.3",
"@types/jspdf": "^1.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"commander": "^12.1.0",
"dotenv": "^17.0.1",
"jspdf": "^3.0.1",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"next-themes": "^0.4.6",
"node-fetch": "^3.3.2",
"openai": "^5.8.2",
"pdfjs-dist": "^5.3.93",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.60.0",
"react-markdown": "^10.1.0",
"react-pdf": "^9.1.1",
"resend": "^4.6.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.75"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/lodash": "^4.17.20",
"@types/node": "^20.19.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-pdf": "^6.2.0",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}