-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
214 lines (214 loc) · 11.7 KB
/
Copy pathpackage.json
File metadata and controls
214 lines (214 loc) · 11.7 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"name": "pinpoint",
"version": "0.2.0",
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72",
"type": "module",
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
},
"description": "Pinball machine issue tracking for Austin Pinball Collective",
"scripts": {
"dev": "bash -lc 'set -a; source .env.local; set +a; bash scripts/ensure-supabase.sh && exec ./node_modules/.bin/next dev --port \"$PORT\"'",
"dev:status": "bash scripts/dev-status.sh",
"dev:status:human": "bash scripts/dev-status.sh --verbose",
"build": "bash scripts/workflow/heavy-run.sh next build",
"start": "next start",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"typecheck:tests": "tsc --noEmit -p tsconfig.tests.check.json",
"typecheck:e2e": "tsc --noEmit -p e2e/tsconfig.json",
"lint": "oxlint src/ e2e/ scripts/ supabase/ middleware.ts mdx-components.tsx",
"lint:fix": "oxlint src/ e2e/ scripts/ supabase/ middleware.ts mdx-components.tsx --fix --fix-suggestions",
"fix:lint-format": "npm-run-all --sequential lint:fix format:fix",
"format": "prettier --check \"**/*.{js,jsx,mjs,cjs,ts,tsx,json,css,md}\" --log-level warn",
"format:fix": "prettier --write \"**/*.{js,jsx,mjs,cjs,ts,tsx,json,css,md}\" --log-level error",
"test:ensure-schema": "tsx scripts/ensure-test-schema.ts",
"test:_run": "pnpm run test:ensure-schema && vitest run --project unit --max-workers=4",
"test": "python3 scripts/quiet-run.py --label test -- pnpm run test:_run -- --silent --no-color --reporter=dot",
"test:human": "pnpm run test:_run -- --reporter=verbose",
"test:integration": "pnpm run test:ensure-schema && bash scripts/workflow/heavy-run.sh vitest run --project integration --silent --no-color --reporter=dot --max-workers=2",
"test:integration:supabase": "pnpm run test:ensure-schema && bash scripts/workflow/heavy-run.sh vitest run --project integration-supabase --silent --no-color --reporter=dot --max-workers=2",
"test:changed:_run": "pnpm run test:ensure-schema && vitest run --changed origin/main",
"test:changed": "python3 scripts/quiet-run.py --label test:changed -- pnpm run test:changed:_run -- --silent --no-color --reporter=dot",
"test:changed:human": "pnpm run test:changed:_run -- --reporter=verbose",
"test:watch": "pnpm run test:ensure-schema && vitest watch --project unit",
"test:coverage": "pnpm run test:ensure-schema && vitest run --project unit --coverage --silent --no-color --reporter=dot",
"test:_generate-schema": "drizzle-kit export --dialect=postgresql --schema=./src/server/db/schema.ts > src/test/setup/schema.sql",
"smoke": "bash scripts/workflow/heavy-run.sh playwright test --config=playwright.config.smoke.ts --project=chromium --project='Mobile Chrome' --project=firefox --project='Mobile Safari' --quiet",
"smoke:headed": "playwright test --config=playwright.config.smoke.ts --headed --project=chromium --project='Mobile Chrome' --project=firefox --project='Mobile Safari'",
"e2e:full": "playwright test --config=playwright.config.full.ts --quiet",
"e2e:full:headed": "playwright test --config=playwright.config.full.ts --headed",
"e2e:all:_run": "bash scripts/workflow/e2e-all-isolated.sh",
"e2e:all": "python3 scripts/quiet-run.py --label e2e:all -- pnpm run e2e:all:_run",
"e2e:all:human": "pnpm run e2e:all:_run",
"db:reset": "npm-run-all db:_restart db:_drop_tables db:migrate test:_generate-schema db:_seed db:_seed-users db:_seed-collections db:_seed-machine-settings db:_seed-discord db:_seed-timeline-backfill db:_seed-timeline-demo db:_seed-pinballmap-catalog db:_seed-pinballmap-state",
"db:studio": "drizzle-kit studio",
"db:_restart": "supabase stop && supabase start",
"db:_drop_tables": "node --env-file=.env.local scripts/force-db-reset.mjs",
"db:_push": "node -e \"console.error('drizzle-kit push is disabled in this repo. Use: pnpm run db:generate && pnpm run db:migrate'); process.exit(1)\"",
"db:migrate": "drizzle-kit migrate",
"db:generate": "drizzle-kit generate",
"db:_seed": "node --env-file=.env.local -e 'require(\"child_process\").execFileSync(\"psql\", [process.env.POSTGRES_URL, \"-f\", \"supabase/seed.sql\"], {stdio: \"inherit\"})'",
"db:_seed-users": "node --env-file=.env.local supabase/seed-users.mjs",
"db:_seed-collections": "node --env-file=.env.local supabase/seed-collections.mjs",
"db:_seed-machine-settings": "node --env-file=.env.local supabase/seed-machine-settings.mjs",
"db:_seed-discord": "node --env-file=.env.local supabase/seed-discord.mjs",
"db:_seed-timeline-backfill": "node --env-file=.env.local supabase/seed-timeline-backfill.mjs",
"db:_seed-timeline-demo": "node --env-file=.env.local supabase/seed-timeline-demo.mjs",
"db:_seed-pinballmap-catalog": "node --env-file=.env.local supabase/seed-pinballmap-catalog.mjs",
"db:_seed-pinballmap-state": "tsx --env-file=.env.local supabase/seed-pinballmap-state.ts",
"db:fast-reset": "node --env-file=.env.local scripts/db-fast-reset.mjs > /dev/null",
"db:reset-to-empty": "node --env-file=.env.local scripts/reset-to-empty.mjs",
"check:config": "python3 scripts/check-config-drift.py > /dev/null",
"check:migrations": "drizzle-kit check",
"check:linters": "yamllint . && python3 scripts/check_skill_frontmatter.py && actionlint $(find .github/workflows \\( -name '*.yml' -o -name '*.yaml' \\) ! -name '*.lock.yml') && ruff check scripts/ && ruff format --check scripts/ && find scripts/ .claude/hooks/ -name '*.sh' -print0 | xargs -0 shellcheck && zizmor --min-severity low --format plain $(find .github/workflows \\( -name '*.yml' -o -name '*.yaml' \\) ! -name '*.lock.yml') .github/actions/setup-mise/action.yml && ratchet lint .github/actions/setup-mise/action.yml .github/workflows/ci.yml .github/workflows/preview-control.yaml .github/workflows/preview-reaper.yaml .github/workflows/preview-sync.yaml .github/workflows/audit-override.yaml",
"audit:role-checks": "bash scripts/audit/no-hardcoded-role-checks.sh",
"audit:sm-structural": "bash scripts/audit/no-sm-structural-breakpoints.sh",
"check:behind-main": "bash scripts/check-behind-main.sh",
"check:pytest": "bash scripts/check-pytest.sh scripts/tests/",
"check:python": "ruff check scripts/ && ruff format --check scripts/ && pnpm run check:pytest -m \"not integration\"",
"test:python": "pnpm run check:pytest -m \"not integration\"",
"test:python:all": "pnpm run check:pytest",
"test:python:integration": "pnpm run check:pytest -m integration",
"check:prototype-clean": "bash scripts/hooks/prototype-clean-guard.sh",
"check:rule-ids": "python3 scripts/check_rule_ids.py",
"check:rule-ids:orphans": "python3 scripts/check_rule_ids.py --orphans",
"check:_run": "pnpm run check:prototype-clean && npm-run-all --silent --parallel typecheck typecheck:tests typecheck:e2e lint format:fix check:linters check:rule-ids audit:role-checks audit:sm-structural check:behind-main",
"check": "python3 scripts/quiet-run.py --label check -- pnpm run check:_run",
"check:human": "pnpm run check:_run",
"preflight": "bash scripts/workflow/preflight-locked.sh",
"preflight:human": "bash scripts/workflow/preflight-locked.sh --human",
"preflight:_run": "pnpm run check:prototype-clean && npm-run-all --silent --parallel typecheck typecheck:tests typecheck:e2e fix:lint-format test:human check:config --sequential db:fast-reset build test:integration test:integration:supabase smoke",
"preflight:unlocked": "python3 scripts/quiet-run.py --label preflight -- pnpm run preflight:_run",
"preflight:unlocked:human": "pnpm run preflight:_run",
"kill:zombies": "node --env-file=.env.local scripts/kill-zombies.mjs",
"db:backup": "bash scripts/backup-production.sh",
"db:seed:from-prod": "bash scripts/seed-from-backup.sh",
"chores:backups": "node scripts/check-prod-backups.mjs",
"migrate:production": "tsx scripts/migrate-production.ts",
"vercel-build": "pnpm run migrate:production && next build",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/timothyfroehlich/PinPoint"
},
"keywords": [
"pinball",
"issue-tracking",
"nextjs"
],
"author": "Tim Froehlich",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@modelcontextprotocol/server": "^2.0.0",
"@next/env": "16.3.3",
"@next/mdx": "16.3.3",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.17",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.18",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.12",
"@sentry/nextjs": "^10.48.0",
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.103.0",
"@tiptap/extension-link": "^3.30.5",
"@tiptap/extension-mention": "^3.30.5",
"@tiptap/extension-placeholder": "^3.30.5",
"@tiptap/pm": "^3.30.5",
"@tiptap/react": "^3.30.5",
"@tiptap/starter-kit": "^3.30.5",
"@tiptap/suggestion": "^3.30.5",
"@types/nodemailer": "^8.0.0",
"@types/zxcvbn": "^4.4.5",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.4",
"@vercel/blob": "^2.3.3",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.0.1",
"mcp-handler": "2.1.1",
"next": "16.3.3",
"nodemailer": "^9.1.1",
"pino": "^10.3.1",
"postgres": "^3.4.9",
"qrcode": "^1.5.4",
"react": "^19.2.5",
"react-day-picker": "^10.0.0",
"react-dom": "^19.2.5",
"resend": "^6.10.0",
"sanitize-html": "^2.17.4",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tippy.js": "^6.3.7",
"vaul": "^1.1.2",
"zod": "^4.3.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@electric-sql/pglite": "^0.5.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^26.0.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"baseline-browser-mapping": "^2.10.18",
"drizzle-kit": "^0.31.10",
"eslint-plugin-better-tailwindcss": "^4.5.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^30.0.0",
"lint-staged": "^17.0.4",
"npm-run-all2": "^9.0.1",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^7.0.2001",
"pino-pretty": "^13.1.3",
"postcss": "^8.5.13",
"prettier": "^3.8.2",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^7.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4",
"webpack": "^5.106.1"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"oxlint --fix --fix-suggestions",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}