Files
democratic-money/package.json
2026-05-16 00:47:44 +00:00

60 lines
1.8 KiB
JSON

{
"name": "fundraising-platform",
"version": "0.1.0",
"private": true,
"scripts": {
"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",
"test:integration": "tsx scripts/smoke-integration.ts",
"test:http": "bash scripts/http-smoke.sh",
"test:all": "prisma validate && prisma migrate status && npm run test:integration && npm run build"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@stripe/react-stripe-js": "^6.3.0",
"@stripe/stripe-js": "^9.4.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"next": "^16.2.6",
"next-auth": "^5.0.0-beta.31",
"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"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "^16.2.6",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"zeptomatch": "^1.2.2"
},
"overrides": {
"zeptomatch": "^1.2.2"
}
}