forked from thatskiff33/AlpineClubBookingsNZ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 5.6 KB
/
Copy pathpackage.json
File metadata and controls
160 lines (160 loc) · 5.6 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "alpine-club-bookings-nz",
"version": "0.13.1",
"description": "Open-source club booking, membership, payment, and finance platform.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thatskiff33/AlpineClubBookingsNZ.git"
},
"homepage": "https://github.com/thatskiff33/AlpineClubBookingsNZ#readme",
"bugs": {
"url": "https://github.com/thatskiff33/AlpineClubBookingsNZ/issues"
},
"engines": {
"node": ">=24.0.0 <25",
"npm": ">=11"
},
"keywords": [
"booking-system",
"club-management",
"nextjs",
"postgresql",
"prisma",
"stripe",
"xero"
],
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"typecheck": "next typegen && tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
"knip": "knip",
"test": "vitest run",
"test:policy": "vitest run src/lib/policies/__tests__",
"test:watch": "vitest",
"test:e2e": "bash scripts/e2e-stack.sh test",
"test:e2e:prepare": "bash scripts/e2e-stack.sh prepare",
"test:e2e:run": "bash scripts/e2e-stack.sh run",
"test:e2e:down": "bash scripts/e2e-stack.sh down",
"load:public": "k6 run load/scenarios/public-browse.js",
"load:login": "k6 run load/scenarios/login.js",
"load:contention": "k6 run load/scenarios/booking-contention.js",
"load:dashboard": "k6 run load/scenarios/member-dashboard.js",
"quality:report": "tsx scripts/quality-report.ts",
"setup:check": "tsx scripts/setup.ts check",
"setup:wizard": "tsx scripts/setup.ts wizard",
"review:staging:a11y": "bash scripts/run-staging-accessibility-checks.sh",
"docs:linkcheck": "node scripts/check-doc-links.mjs",
"docs:screenshots": "tsx e2e/tools/capture-screenshots.ts",
"docs:readme-art": "tsx e2e/tools/compose-readme-art.ts",
"docs:demo-gif": "tsx e2e/tools/capture-demo-gif.ts",
"docs:wiki-sync": "node scripts/sync-user-guide-wiki.mjs",
"theme:goldens": "tsx scripts/theme/generate-goldens.ts",
"theme:scan": "node scripts/theme/scan-colors.mjs --root . --json docs/theme/phase0/data/counts.json",
"theme:vendor-transpile": "npx -y esbuild@0.25.10 scripts/theme/vendor/generate-radix-colors.tsx --loader:.tsx=tsx --format=esm --outfile=scripts/theme/vendor/generate-radix-colors.mjs",
"db:generate": "prisma generate",
"db:seed": "npx tsx prisma/seed.ts",
"db:seed:demo": "npx tsx prisma/demo-seed.ts",
"db:migrate": "npx prisma migrate deploy",
"db:push": "npx prisma db push",
"db:check-drift": "prisma migrate diff --from-migrations ./prisma/migrations --to-schema ./prisma/schema.prisma --exit-code",
"config:self-heal": "tsx scripts/config-self-heal.ts",
"db:audit-access-role-cleanup": "tsx scripts/audit-access-role-membership-cleanup.ts",
"xero:audit-invoice-rounding": "tsx scripts/audit-xero-invoice-rounding.ts",
"finance:backfill-monthly-facts": "tsx scripts/backfill-finance-monthly-facts.ts",
"payments:backfill-cancel-flattened": "tsx scripts/backfill-cancel-flattened-payments.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
"@prisma/adapter-pg": "7.9.0",
"@prisma/client": "7.9.0",
"@radix-ui/colors": "3.0.0",
"@radix-ui/react-accordion": "^1.2.16",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-dropdown-menu": "^2.1.20",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.17",
"@sentry/nextjs": "^10.65.0",
"@stripe/react-stripe-js": "^6.6.0",
"@stripe/stripe-js": "^9.8.0",
"bcryptjs": "^3.0.3",
"bezier-easing": "2.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"colorjs.io": "0.5.2",
"date-fns": "^4.4.0",
"fflate": "^0.8.3",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"lucide-react": "^1.24.0",
"next": "16.2.10",
"next-auth": "5.0.0-beta.31",
"next-themes": "^0.4.6",
"node-cron": "^4.6.0",
"nodemailer": "^9.0.1",
"otpauth": "^9.5.1",
"photoswipe": "^5.4.4",
"pino": "^10.3.1",
"prisma": "^7.8.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"recharts": "^3.9.2",
"sanitize-html": "^2.17.6",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"stripe": "^22.3.1",
"tailwind-merge": "^3.6.0",
"xero-node": "^18.0.0",
"zod": "^4.4.3"
},
"overrides": {
"sharp": "$sharp",
"@hono/node-server": "2.0.5",
"eslint-plugin-react-hooks": "7.1.1",
"hono": "4.12.27",
"axios": "1.18.1",
"dompurify": "3.4.12",
"follow-redirects": "1.16.0",
"postcss": "8.5.10",
"vite": "8.0.16",
"form-data": "4.0.6",
"brace-expansion": "5.0.7",
"next-auth": {
"nodemailer": "$nodemailer"
}
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jsdom": "^28.0.3",
"@types/node": "^24",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"@vitest/coverage-v8": "^4.1.10",
"dotenv": "^17.4.2",
"eslint": "^10.7.0",
"eslint-config-next": "16.2.10",
"fast-check": "^4.9.0",
"jsdom": "^29.1.1",
"knip": "^6.26.0",
"pg": "^8.22.0",
"sharp": "^0.35.3",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^6",
"vitest": "^4.1.9"
}
}