-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 5.98 KB
/
Copy pathpackage.json
File metadata and controls
159 lines (159 loc) · 5.98 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
{
"name": "boardly",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"db:push": "prisma db push",
"db:prepare-roles": "prisma db execute --file scripts/prepare-rls-roles.psql",
"db:migrate": "npm run db:prepare-roles && prisma migrate deploy",
"db:migrate:status": "prisma migrate status",
"db:generate": "prisma generate",
"db:validate": "prisma validate",
"db:audit": "tsx scripts/audit-database-tables.ts",
"db:seed:spy-locations": "tsx prisma/seed-spy-locations.ts",
"db:rls:smoke": "tsx scripts/run-rls-smoke.ts",
"db:studio": "prisma studio",
"db:setup": "prisma db push && prisma generate",
"arch:audit": "tsx scripts/audit-module-boundaries.ts",
"audit:responsive": "tsx scripts/audit-responsive.ts",
"audit:emoji": "tsx scripts/check-emoji.ts",
"ci:quick": "npm run lint && npm run typecheck && npm run arch:audit && npm run audit:responsive && npm run audit:emoji",
"ci:quality": "npm run ci:quick && npm test",
"postinstall": "prisma generate",
"test": "jest --runInBand",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageProvider=v8",
"check:locales": "node --import tsx scripts/check-locales.ts",
"report:locales:untranslated": "node --import tsx scripts/report-untranslated-locales.ts",
"ready:build-test": "npm run check:locales && npm run typecheck && npm run lint && npm test && npm run build",
"check:env": "tsx scripts/check-env.ts",
"check:env:quiet": "tsx scripts/check-env.ts --quiet",
"check:bundle-budget": "tsx scripts/check-bundle-budget.ts",
"check:db": "tsx scripts/test-db-connection.ts",
"check:db:verbose": "tsx scripts/test-db-connection.ts --verbose",
"check:spy-locations": "tsx scripts/check-spy-locations.ts",
"cleanup:abandoned-games": "tsx scripts/cleanup-abandoned-games.ts",
"cleanup:old-guests": "tsx scripts/cleanup-old-guests.ts",
"cleanup:old-replays": "tsx scripts/cleanup-old-replays.ts",
"cleanup:unverified": "tsx scripts/cleanup-unverified.ts",
"achievements:grant-retroactive": "tsx scripts/grant-retroactive-achievements.ts",
"ops:alerts:check": "tsx scripts/check-reliability-alerts.ts",
"ops:kpi:report": "tsx scripts/report-operational-kpis.ts",
"ops:load": "tsx scripts/run-operational-load.ts",
"ops:project-hygiene": "tsx scripts/project-hygiene.ts",
"find-stuck-games": "tsx scripts/find-stuck-games.ts",
"fix-stuck-games": "tsx scripts/find-stuck-games.ts --fix",
"fix-game-statuses": "tsx scripts/fix-game-statuses.ts",
"clear-all-data": "tsx scripts/clear-all-data.ts",
"pre-deploy": "npm run lint && npm run test && npm run build",
"hooks:install": "lefthook install",
"hooks:pre-commit": "node --import tsx scripts/git-hook-pre-commit.ts",
"hooks:pre-push": "node --import tsx scripts/git-hook-pre-push.ts",
"prepare": "node scripts/install-hooks-if-available.js"
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"@phosphor-icons/react": "^2.1.10",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "^7.4.2",
"@sentry/nextjs": "^10.42.0",
"@supabase/supabase-js": "^2.105.4",
"@types/bcrypt": "5.0.2",
"@types/canvas-confetti": "^1.9.0",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "22.5.5",
"@upstash/redis": "^1.35.6",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"autoprefixer": "10.4.20",
"bcrypt": "^6.0.0",
"canvas-confetti": "^1.9.3",
"dotenv": "^17.3.1",
"i18next": "^25.8.16",
"i18next-browser-languagedetector": "^8.2.0",
"jsonwebtoken": "9.0.2",
"nanoid": "^5.1.6",
"next": "^16.1.6",
"next-auth": "^4.24.7",
"pg": "^8.16.3",
"postcss": "8.4.47",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"react-i18next": "^16.5.6",
"resend": "^6.9.3",
"stripe": "^22.1.1",
"tailwindcss": "3.4.14",
"tsx": "^4.20.6",
"typescript": "5.6.3",
"web-push": "^3.6.7",
"zod": "3.23.8"
},
"devDependencies": {
"@edge-runtime/jest-environment": "^4.0.0",
"@modelcontextprotocol/server-filesystem": "^2026.1.14",
"@modelcontextprotocol/server-github": "^2025.4.8",
"@modelcontextprotocol/server-memory": "^2026.1.26",
"@modelcontextprotocol/server-postgres": "^0.6.2",
"@playwright/test": "^1.62.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.4",
"eslint": "^9.39.4",
"eslint-config-next": "^16.1.6",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lefthook": "^1.13.6",
"markdownlint-cli": "^0.48.0",
"prisma": "^7.4.2",
"ts-jest": "^29.4.6",
"whatwg-fetch": "^3.6.20"
},
"overrides": {
"rollup": "^4.59.0",
"@modelcontextprotocol/server-filesystem": {
"@modelcontextprotocol/sdk": "^1.27.1",
"minimatch": "^10.2.4"
},
"@modelcontextprotocol/server-github": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"@modelcontextprotocol/server-memory": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"@modelcontextprotocol/server-postgres": {
"@modelcontextprotocol/sdk": "^1.27.1"
},
"@hono/node-server": "^1.19.10",
"express-rate-limit": "^8.2.2",
"hono": "^4.12.7",
"serialize-javascript": "^7.0.3",
"schema-utils": {
"ajv": "^8.18.0"
},
"ajv-formats": {
"ajv": "^8.18.0"
},
"@edge-runtime/jest-environment": {
"jest-mock": "^30.0.0"
}
},
"pnpm": {
"overrides": {
"@edge-runtime/jest-environment>jest-mock": "^30.0.0"
}
}
}