-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
265 lines (265 loc) · 13 KB
/
package.json
File metadata and controls
265 lines (265 loc) · 13 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
{
"name": "contributor-info",
"private": true,
"version": "4.67.1",
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"start": "npx concurrently -k -s first -n \"VITE,NETLIFY,INNGEST\" -c \"green,blue,magenta\" \"vite --port 5174\" \"netlify dev\" \"npx inngest-cli@latest dev -u http://127.0.0.1:8888/.netlify/functions/inngest-local-full\"",
"dev": "vite",
"dev:inngest": "npx inngest-cli@latest dev -u http://127.0.0.1:8888/.netlify/functions/inngest-local",
"build": "npm run verify:csp && vite build && cp public/_headers dist/_headers && cp CHANGELOG.md dist/CHANGELOG.md",
"build:analyze": "ANALYZE=true npm run build",
"generate-sitemap": "node scripts/sitemap/generate-sitemap.js",
"typecheck": "tsc -b --noEmit",
"typecheck:functions": "tsc --project tsconfig.functions.json --noEmit",
"typecheck:functions:strict": "# Run this locally to check function types - not in build due to Inngest type incompatibilities",
"optimize-images": "node scripts/assets/convert-images.js",
"build:test": "npm test && tsc -b && vite build",
"build:lighthouse": "tsc -b && vite build --mode production && node scripts/debugging/check-build-clean.js",
"lighthouse": "lighthouse http://localhost:4173 --output json --output html --output-path ./lighthouse-reports/report --chrome-flags=\"--headless\"",
"lighthouse:desktop": "lighthouse http://localhost:4173 --preset=desktop --output json --output html --output-path ./lighthouse-reports/desktop-report --chrome-flags=\"--headless\"",
"lighthouse:mobile": "lighthouse http://localhost:4173 --preset=perf --form-factor=mobile --throttling.cpuSlowdownMultiplier=4 --output json --output html --output-path ./lighthouse-reports/mobile-report --chrome-flags=\"--headless\"",
"lighthouse:mobile-fast": "lighthouse http://localhost:4173 --preset=perf --form-factor=mobile --throttling-method=devtools --output json --output html --output-path ./lighthouse-reports/mobile-fast-report --chrome-flags=\"--headless\"",
"lighthouse:mobile-slow": "lighthouse http://localhost:4173 --preset=perf --form-factor=mobile --throttling.cpuSlowdownMultiplier=6 --throttling.requestLatencyMs=300 --throttling.downloadThroughputKbps=400 --throttling.uploadThroughputKbps=400 --output json --output html --output-path ./lighthouse-reports/mobile-slow-report --chrome-flags=\"--headless\"",
"test:lighthouse": "npm run build && npm run preview & sleep 3 && npm run lighthouse && npm run lighthouse:desktop && npm run lighthouse:mobile && kill %1",
"test:lighthouse:mobile": "npm run build && npm run preview & sleep 3 && npm run lighthouse:mobile && npm run lighthouse:mobile-fast && npm run lighthouse:mobile-slow && kill %1",
"test:lighthouse:comprehensive": "npm run build && npm run preview & sleep 3 && npm run lighthouse && npm run lighthouse:desktop && npm run lighthouse:mobile && npm run lighthouse:mobile-fast && npm run lighthouse:mobile-slow && kill %1",
"analyze:mobile-performance": "node scripts/performance/analyze-mobile-performance.js",
"setup-cohorts": "tsx scripts/setup-posthog-cohorts.ts",
"test:mobile-performance": "npm run test:lighthouse:mobile && npm run analyze:mobile-performance",
"test:slow-network": "npm run build && npm run preview & sleep 3 && node scripts/performance/test-slow-network.js && kill %1",
"test:slow-network:fast3g": "npm run build && npm run preview & sleep 3 && node scripts/performance/test-slow-network.js --condition=fast3g && kill %1",
"test:slow-network:ci": "node scripts/performance/test-slow-network.js --ci",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"lint:build": "eslint src/ --ext .ts,.tsx --ignore-pattern '**/__mocks__/**' --ignore-pattern '**/*.stories.*' --ignore-pattern '**/*.test.*' --ignore-pattern '**/stories/**' --max-warnings 10 --cache",
"verify:csp": "node scripts/verify-csp-hash.js",
"validate:redirects": "node scripts/validate-redirects.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"hooks:install": "git config core.hooksPath .githooks",
"hooks:uninstall": "git config --unset core.hooksPath",
"test:ui": "vitest --ui",
"test:unit": "vitest run --config vitest.config.ts",
"test:unit:watch": "vitest watch --config vitest.config.ts",
"test:edge-functions": "cd supabase/functions && deno task test",
"test:edge-functions:watch": "cd supabase/functions && deno task test:watch",
"test:edge-functions:coverage": "cd supabase/functions && deno task coverage",
"lint:edge-functions": "cd supabase/functions && deno task lint",
"format:edge-functions": "cd supabase/functions && deno task fmt",
"format:edge-functions:check": "cd supabase/functions && deno task fmt:check",
"test:bulletproof": "vitest run --config vitest.config.simple.ts --bail 1",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"supabase:start": "node scripts/setup/start-local-supabase.js",
"supabase:start:with-migrations": "npx supabase start",
"supabase:migrate:local": "node supabase/migrations-local/setup-local.mjs",
"supabase:migrate:consolidated": "node supabase/migrations-local/setup-local.mjs --consolidated",
"supabase:stop": "npx supabase stop",
"supabase:reset": "npx supabase db reset",
"supabase:status": "npx supabase status",
"supabase:migrate": "npx supabase db push",
"db:local": "npm run supabase:start",
"db:setup": "npm run supabase:start && npm run supabase:migrate:consolidated",
"env:local": "node scripts/setup/switch-environment.js local",
"env:production": "node scripts/setup/switch-environment.js production",
"setup": "node scripts/setup/first-time-setup.mjs",
"setup:verify": "node scripts/setup/verify-setup.mjs",
"setup:reset": "node scripts/setup/reset-setup.mjs",
"db:seed": "node scripts/setup/generate-seed-data.mjs",
"db:seed:quick": "node scripts/setup/generate-seed-data.mjs --days=3 --repos=continuedev/continue",
"db:seed:dry": "node scripts/setup/generate-seed-data.mjs --dry-run",
"db:seed:clean": "node scripts/setup/clean-seed-data.mjs",
"seed:status": "node scripts/setup/check-seed-status.mjs",
"setup-storage": "node scripts/setup/setup-supabase-storage.js",
"test-social-cards": "node scripts/testing-tools/test-social-cards.js",
"migrate-images": "node scripts/assets/migrate-to-supabase-storage.js",
"update-image-urls": "node scripts/assets/update-image-urls.js",
"cleanup-local-images": "node scripts/assets/cleanup-local-images.js",
"monitor-cdn": "node scripts/performance/monitor-cdn-performance.js",
"monitor-db": "node scripts/performance/monitor-database-performance.js",
"monitor-db-snapshot": "node scripts/performance/monitor-database-performance.js snapshot",
"monitor-db-reset": "node scripts/performance/monitor-database-performance.js reset",
"setup-regeneration": "node scripts/setup/setup-card-regeneration.js setup",
"check-regeneration": "node scripts/setup/setup-card-regeneration.js check",
"check-commits": "node scripts/debugging/check-commits.cjs",
"install-browsers": "playwright install chromium --with-deps || echo 'Playwright browser installation skipped'",
"test:ci-env": "node scripts/testing-tools/test-ci-environment.js",
"verify:es-module-fix": "node scripts/utilities/verify-es-module-fix.js",
"eval:maintainer": "tsx scripts/utilities/run-maintainer-eval.ts",
"eval:benchmark": "tsx scripts/utilities/run-maintainer-eval.ts --benchmark",
"eval:conservative": "tsx scripts/utilities/run-maintainer-eval.ts --config conservative",
"eval:aggressive": "tsx scripts/utilities/run-maintainer-eval.ts --config aggressive",
"recover:chunks": "node scripts/github-actions/recover-stuck-chunks.js",
"similarity:check": "tsx scripts/actions-similarity.ts",
"populate-commits": "tsx scripts/populate-commits.ts",
"postinstall": "node scripts/setup/install-husky.js",
"lint:docs": "bash scripts/lint-docs.sh"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/react": "^3.0.91",
"@hookform/resolvers": "^3.9.0",
"@netlify/functions": "^5.1.2",
"@nivo/scatterplot": "^0.99.0",
"@octokit/auth-app": "^8.0.2",
"@octokit/graphql": "^9.0.1",
"@octokit/plugin-throttling": "^11.0.1",
"@octokit/rest": "^22.0.0",
"@polar-sh/sdk": "^0.42.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/react": "^10.27.0",
"@supabase/supabase-js": "^2.92.0",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/query-sync-storage-persister": "^5.90.14",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-persist-client": "^5.90.14",
"@tanstack/react-table": "^8.21.3",
"@tanstack/react-virtual": "^3.13.12",
"@testing-library/dom": "^10.4.1",
"@types/dompurify": "^3.0.5",
"@types/minimatch": "^5.1.2",
"@types/react-joyride": "^2.0.2",
"@unkey/api": "^0.30.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.11.0",
"@xenova/transformers": "^2.17.2",
"@zumer/snapdom": "^1.7.1",
"ai": "^6.0.89",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"dompurify": "^3.3.2",
"dub": "^0.69.0",
"embla-carousel-react": "^8.3.0",
"html2canvas": "^1.4.1",
"inngest": "^3.44.5",
"input-otp": "^1.2.4",
"js-yaml": "^4.1.1",
"lucide-react": "^0.563.0",
"marked": "^16.1.2",
"minimatch": "^10.2.3",
"openai": "^5.22.0",
"papaparse": "^5.5.3",
"posthog-js": "^1.335.2",
"react": "^19.2.1",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.1",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.53.0",
"react-joyride": "^3.0.0-7",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.3",
"react-router": "^7.12.0",
"recharts": "^2.12.7",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uplot": "^1.6.32",
"vaul": "^1.0.0",
"vite-imagetools": "^7.1.0",
"web-vitals": "^5.1.0",
"zod": "^3.23.8",
"zustand": "^5.0.3"
},
"overrides": {
"rollup": "^4.52.4",
"tar-fs": ">=2.1.4",
"tar": ">=7.5.2",
"ws": ">=8.17.1",
"sirv": ">=3.0.2",
"js-yaml": "^4.1.1",
"undici": ">=6.23.0",
"react-helmet-async": {
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"minimatch": "^10.2.3",
"sharp": "^0.34.3",
"brace-expansion": ">=5.0.5"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@continuedev/cli": "^1.4.44",
"@eslint/js": "^9.39.2",
"@iarna/toml": "^2.2.5",
"@iconify/json": "^2.2.367",
"@mdx-js/react": "^2.3.0",
"@playwright/test": "^1.56.1",
"@react-spring/web": "^10.0.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/html2canvas": "^0.5.35",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.7.3",
"@types/papaparse": "^5.5.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.1.2",
"dotenv": "^16.6.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lighthouse": "^12.7.1",
"lightningcss": "^1.30.1",
"lint-staged": "^16.1.5",
"msw": "^2.10.4",
"nock": "^14.0.4",
"playwright": "^1.56.1",
"postcss": "^8.4.47",
"prettier": "^3.6.2",
"rolldown": "^1.0.0-beta.26",
"rollup-plugin-visualizer": "^6.0.5",
"sharp": "^0.34.3",
"svg-sprite": "^2.0.4",
"svgo": "^4.0.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.7.0",
"unplugin-icons": "^22.2.0",
"vite": "^6.4.1",
"vitest": "^3.1.1",
"wait-on": "^8.0.3"
}
}