Public Access
1
0
Files
leads4less/package.json
T
pguerrerox 5508e15da1 feat: launch Stripe billing flows with lifecycle hardening and analytics
add Stripe checkout, portal, webhook ingestion, and idempotent event persistence

add billing lifecycle state (grace/sync/timeline/admin visibility) and stronger entitlement handling

add analytics event tracking and admin summary APIs plus account/pricing UI integration
2026-05-22 22:55:04 +00:00

58 lines
2.0 KiB
JSON

{
"name": "leads4less",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"dev:web": "vite --port=3000 --host=0.0.0.0",
"dev:api": "tsx --tsconfig tsconfig.server.json server/src/index.ts",
"dev:worker": "tsx --tsconfig tsconfig.server.json server/src/worker.ts",
"build": "vite build",
"build:api": "tsc -p tsconfig.server.json",
"preview": "vite preview",
"clean": "rm -rf dist dist-server",
"lint": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit",
"migrate": "tsx --tsconfig tsconfig.server.json db/scripts/migrate.ts",
"import:postal": "tsx --tsconfig tsconfig.server.json db/scripts/import-postal-areas.ts",
"build:postal-neighbors": "tsx --tsconfig tsconfig.server.json db/scripts/build-postal-neighbors.ts",
"check:postal": "tsx --tsconfig tsconfig.server.json db/scripts/check-postal-status.ts",
"seed:postal": "npm run import:postal && npm run build:postal-neighbors",
"start:api": "node dist-server/server/src/index.js",
"start:worker": "node dist-server/server/src/worker.js"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@tailwindcss/vite": "^4.1.14",
"@vis.gl/react-google-maps": "^1.7.1",
"@vitejs/plugin-react": "^5.0.4",
"argon2": "^0.44.0",
"clsx": "^2.1.1",
"dotenv": "^17.3.1",
"fastify": "^5.8.4",
"lucide-react": "^0.546.0",
"papaparse": "^5.5.3",
"pg": "^8.20.0",
"pg-boss": "^12.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stream-json": "^2.1.0",
"stripe": "^22.1.1",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.21",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}