-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 7.2 KB
/
package.json
File metadata and controls
173 lines (173 loc) · 7.2 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
{
"name": "syr",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "./scripts/dev-with-restart.sh",
"dev:daemon": "./scripts/dev-with-restart.sh --daemon",
"dev:stop": "./scripts/dev-with-restart.sh --stop",
"dev:status": "./scripts/dev-with-restart.sh --status",
"dev:check": "./scripts/dev-check-fast.ts",
"dev:clean": "./scripts/dev-with-restart.sh --clean",
"dev:simple": "PATH=\"/opt/homebrew/bin:$PATH\" dotenv -e .env.local -- next dev > dev.log 2>&1",
"dev:turbo": "PATH=\"/opt/homebrew/bin:$PATH\" dotenv -e .env.local -- next dev --turbo > dev.log 2>&1",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:errors": "eslint --max-warnings=0 --no-error-on-unmatched-pattern",
"prepare": "husky install",
"check:health": "./scripts/check-health.ts",
"check:health:quick": "npm run check:health -- --quick",
"check:health:rigorous": "npm run check:health -- --rigorous",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:e2e": "playwright test",
"test:e2e:with-preflight": "npm run e2e:preflight && npm run test:e2e",
"test:e2e:ui": "npm run test:e2e -- --ui",
"test:e2e:debug": "npm run test:e2e -- --debug",
"test:e2e:setup": "npm run test:e2e -- --project=setup",
"e2e:verify-user": "./scripts/e2e-verify-user.ts",
"e2e:verify-server": "./scripts/e2e-verify-server.ts",
"e2e:preflight": "npm run e2e:verify-user && npm run e2e:verify-server",
"db:types": "./scripts/generate-database-types.ts",
"db:reset:DANGEROUS": "echo '⚠️ WARNING: This will DELETE ALL DATA and invalidate ALL worktree auth files! Type YES to continue:' && read confirm && [ \"$confirm\" = \"YES\" ] && supabase db reset && npm run db:types && npm run import-documents && rm -f playwright/.auth/*.json && echo '✅ Database reset complete. Run ./scripts/setup-auth-all-worktrees.ts to re-setup authentication in all worktrees.'",
"db:backup": "./scripts/backup-database.ts",
"cleanup:test-data": "tsx scripts/cleanup-test-data.ts",
"cleanup:document": "tsx scripts/delete-document.ts",
"import-documents": "dotenv -e .env.local -- npx tsx scripts/import-static-documents.ts",
"analyze-fidelity": "dotenv -e .env.local -- npx tsx scripts/analyze-content-fidelity.ts",
"deploy:production": "npm run build && git push origin main",
"critique": "./scripts/o3-critique-as-api.ts",
"db:fix:storage-owner": "tsx scripts/fix-storage-owner.ts",
"supabase": "supabase",
"supabase:start": "npm run supabase:start:minimal",
"supabase:start:minimal": "npm run supabase -- start --exclude analytics,vector,inbucket",
"supabase:start:full": "npm run supabase -- start",
"supabase:stop": "npm run supabase -- stop",
"supabase:status": "npm run supabase -- status"
},
"postinstall": "node ./scripts/copy-supabase-bundle.js",
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.18",
"@ai-sdk/openai": "^1.3.22",
"@anthropic-ai/sdk": "^0.52.0",
"@assistant-ui/react": "^0.10.13",
"@assistant-ui/react-markdown": "^0.10.4",
"@hookform/resolvers": "^5.0.1",
"@mermaid-js/mermaid-cli": "^11.6.0",
"@mistralai/mistralai": "^1.7.3",
"@modelcontextprotocol/sdk": "^1.15.0",
"@mozilla/readability": "^0.6.0",
"@napi-rs/canvas": "^0.1.73",
"@next/third-parties": "^15.3.4",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@stripe/stripe-js": "^7.3.1",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.8",
"@types/dompurify": "^3.0.5",
"@types/js-beautify": "^1.14.3",
"@types/jsonwebtoken": "^9.0.9",
"@types/marked": "^5.0.2",
"@types/nunjucks": "^3.2.6",
"@types/turndown": "^5.0.5",
"ai": "^4.3.16",
"cheerio": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"fastest-levenshtein": "^1.0.16",
"imagescript": "^1.0.0",
"isomorphic-dompurify": "^2.25.0",
"js-beautify": "^1.15.4",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.511.0",
"mark.js": "^8.11.1",
"marked": "^16.0.0",
"next": "15.3.2",
"nunjucks": "^3.2.4",
"nuqs": "^2.4.3",
"openai": "^5.8.2",
"p-queue": "^8.1.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.3.31",
"pica": "^9.0.1",
"pino": "^9.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.57.0",
"react-media-recorder": "^1.7.1",
"react-resizable-panels": "^3.0.2",
"react-responsive": "^10.0.1",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"skia-canvas": "^2.0.2",
"slug": "^11.0.0",
"stripe": "^18.2.1",
"tailwind-merge": "^3.3.0",
"turndown": "^7.2.0",
"tw-animate-css": "^1.3.2",
"unified": "^11.0.5",
"unpdf": "^1.0.0",
"usehooks-ts": "^3.1.1",
"uuid": "^11.1.0",
"zod": "^3.25.46",
"ssl-root-cas": "^1.0.2"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "^4.1.11",
"lightningcss-linux-x64-gnu": "^1.30.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@faker-js/faker": "^9.9.0",
"@playwright/test": "^1.53.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/pdfjs-dist": "^2.10.377",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/slug": "^5.0.9",
"@types/uuid": "^10.0.0",
"clipanion": "^4.0.0-rc.4",
"dotenv-cli": "^8.0.0",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"husky": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"next-test-api-route-handler": "^4.0.16",
"node-fetch": "^3.3.2",
"node-loader": "^2.1.0",
"pino-pretty": "^13.0.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:errors"
]
}
}