-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 4.19 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 4.19 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
{
"name": "usts-acm-land",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && node scripts/generate-third-party-licenses.mjs --build && node scripts/copy-spa-fallback.mjs && node scripts/generate-third-party-licenses.mjs --check && node scripts/check-site-metadata.mjs && node scripts/check-bundle-size.mjs",
"licenses:generate": "node scripts/generate-third-party-licenses.mjs --build",
"licenses:check": "node scripts/generate-third-party-licenses.mjs --check",
"check:bundle": "node scripts/check-bundle-size.mjs",
"check:cloudflare-domain": "node scripts/check-cloudflare-domain.mjs",
"check:backup-workflow": "node scripts/check-database-backup-workflow.mjs",
"check:account-deletion-concurrency": "node scripts/check-account-deletion-concurrency.mjs",
"check:referral-concurrency": "node scripts/check-referral-concurrency.mjs",
"check:referral-concurrency:guard-isolation": "node scripts/check-referral-concurrency.mjs --guard-isolation-only",
"check:training-goal-concurrency": "node scripts/check-training-goal-concurrency.mjs",
"check:sync-platform-outage": "node scripts/check-sync-platform-outage.mjs",
"check:sync-platform-outage:production": "node scripts/check-sync-platform-outage.mjs --production",
"check:qoj-firecrawl-challenge": "deno run --allow-env=FIRECRAWL_API_KEY --allow-net=api.firecrawl.dev --config supabase/functions/deno.json scripts/check-qoj-firecrawl-challenge.ts",
"check:restore-drill-workflow": "node scripts/check-database-restore-drill-workflow.mjs",
"check:ci-workflow": "node scripts/check-ci-workflow.mjs",
"check:repository-readiness": "node scripts/check-repository-readiness.mjs",
"check:recovery-token": "node scripts/check-recovery-token.mjs",
"check:production-security": "node scripts/check-production-security-boundaries.mjs",
"check:supabase-preflight": "node scripts/check-supabase-readiness.mjs --preflight",
"check:supabase-readiness": "node scripts/check-supabase-readiness.mjs",
"check:sync-workflow": "node scripts/check-sync-workflow.mjs",
"check:webchat-relay": "node scripts/check-webchat-relay.mjs",
"check:webchat-cache-probe": "node scripts/check-webchat-production-cache-probe.mjs",
"check:webchat-cache-probe-workflow": "node scripts/check-webchat-cache-probe-workflow.mjs",
"check:webchat-relay-workflow": "node scripts/check-webchat-relay-workflow.mjs",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:db": "npx --yes supabase@2.109.1 test db supabase/tests --local",
"test:e2e": "playwright test",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:production": "playwright test --config=playwright.production.config.ts",
"test:e2e:webchat": "playwright test --config=playwright.webchat.config.ts",
"test:watch": "vitest",
"verify:backup-recovery-floor": "node scripts/verify-backup-recovery-floor.mjs"
},
"dependencies": {
"@ai-sdk/openai-compatible": "3.0.11",
"@ai-sdk/react": "4.0.33",
"@assistant-ui/react": "0.14.27",
"@assistant-ui/react-ai-sdk": "1.3.41",
"@assistant-ui/react-markdown": "0.14.6",
"@supabase/supabase-js": "^2.110.6",
"ai": "7.0.30",
"assistant-stream": "0.3.26",
"lucide-react": "^0.468.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.1",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react-swc": "^4.1.0",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^27.0.0",
"prettier": "^3.6.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.64.0",
"vite": "^7.1.6",
"vitest": "^3.2.4"
}
}