-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.61 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
{
"name": "the-compound-lifting-club-os",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"verify:premium": "node scripts/validate-premium-release.js",
"stress:ops": "node scripts/stress-ops-under-load.js",
"stress:multitenant": "node scripts/stress-multitenant.js",
"seed:multitenant": "node scripts/seed-multitenant-load.js",
"seed:schedule": "node scripts/seed-schedule-parity-data.js",
"seed:billing-recovery": "node scripts/seed-billing-recovery-data.js",
"verify:ops": "node scripts/check-ops-health.js",
"chaos:payments": "node scripts/chaos-payments-and-webhooks.js",
"verify:production-hardening": "node scripts/run-production-hardening-suite.js",
"supabase": "npx supabase",
"supabase:login": "npx supabase login",
"supabase:link": "npx supabase link --project-ref clxpuxsvlnsxaqdvizni",
"supabase:push": "npx supabase db push",
"supabase:pull": "npx supabase db pull",
"supabase:status": "npx supabase status"
},
"dependencies": {
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.49.8",
"next": "15.3.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"stripe": "^18.0.0"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.27.0",
"eslint-config-next": "15.3.2",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}