Add Democratic fundraising platform.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
root
2026-05-16 00:47:44 +00:00
parent 89f9b8dc83
commit 391d90a754
141 changed files with 14989 additions and 914 deletions

View File

@@ -3,10 +3,11 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -H 0.0.0.0 -p 8008",
"build": "next build",
"start": "next start -H 0.0.0.0 -p 8008",
"lint": "next lint",
"dev": "NODE_OPTIONS='--max-old-space-size=8192' ./node_modules/.bin/tsx server.ts",
"dev:next": "NODE_OPTIONS='--max-old-space-size=8192' next dev --turbopack -H 0.0.0.0 -p 8008",
"build": "NODE_OPTIONS='--max-old-space-size=8192' next build",
"start": "NODE_OPTIONS='--max-old-space-size=8192' tsx server.ts",
"lint": "tsc --noEmit",
"postinstall": "prisma generate",
"db:seed": "tsx prisma/seed.ts",
"db:migrate": "prisma migrate dev",
@@ -30,6 +31,8 @@
"pg": "^8.20.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"stripe": "^22.1.1",
"zod": "^4.4.3"
},
@@ -47,6 +50,10 @@
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5"
"typescript": "^5",
"zeptomatch": "^1.2.2"
},
"overrides": {
"zeptomatch": "^1.2.2"
}
}