-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
334 lines (334 loc) · 24.1 KB
/
package.json
File metadata and controls
334 lines (334 loc) · 24.1 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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
{
"name": "zatona-web",
"version": "1.0.0",
"description": "A platform for frontend developers to practice coding challenges and prepare for technical interviews",
"private": true,
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "npm run dev:low-ram",
"dev:standard": "APP_ENV=development NEXT_PUBLIC_APP_ENV=development NODE_ENV=development dotenv -e .env.development -- nx serve website",
"dev:prod": "NODE_OPTIONS=--max-old-space-size=2048 APP_ENV=production NEXT_PUBLIC_APP_ENV=production NODE_ENV=development dotenv -e .env.production -- nx serve website",
"dev:test": "NODE_OPTIONS=--max-old-space-size=2048 APP_ENV=test NEXT_PUBLIC_APP_ENV=test NODE_ENV=development dotenv -e .env.test.local -- nx serve website --port=3000",
"dev:website:test": "NODE_OPTIONS=--max-old-space-size=1536 APP_ENV=test NEXT_PUBLIC_APP_ENV=test NODE_ENV=development dotenv -e .env.test.local -- nx serve website --port=3000",
"dev:admin": "npm run dev:low-ram:admin",
"dev:admin:standard": "APP_ENV=development NEXT_PUBLIC_APP_ENV=development NODE_ENV=development dotenv -e .env.development -- nx serve admin --port=3001",
"dev:admin:prod": "NODE_OPTIONS=--max-old-space-size=1536 APP_ENV=production NEXT_PUBLIC_APP_ENV=production NODE_ENV=development dotenv -e .env.production -- nx serve admin --port=3001",
"dev:admin:test": "NODE_OPTIONS=--max-old-space-size=1536 APP_ENV=test NEXT_PUBLIC_APP_ENV=test NODE_ENV=development dotenv -e .env.test.local -- nx serve admin --port=3001",
"dev:light:test": "NODE_OPTIONS=--max-old-space-size=1536 APP_ENV=test NEXT_PUBLIC_APP_ENV=test NODE_ENV=development dotenv -e .env.test.local -- nx serve admin --port=3001",
"dev:turbo": "NODE_OPTIONS=--max-old-space-size=2048 nx serve website --turbopack",
"build": "NODE_OPTIONS=--max-old-space-size=2048 NODE_ENV=production nx build website",
"build:admin": "NODE_OPTIONS=--max-old-space-size=2048 nx build admin",
"build:all": "NODE_OPTIONS=--max-old-space-size=2048 nx run-many --target=build --all",
"build:check": "NODE_OPTIONS=--max-old-space-size=2048 nx build website --turbopack && echo '✅ Build successful' || (echo '❌ Build failed' && exit 1)",
"build:check-and-push": "bash .cursor/check-build-and-push.sh",
"check-build-push": "bash .cursor/check-build-and-push.sh",
"start": "nx start website",
"start:admin": "nx start admin",
"test": "APP_ENV=test NODE_OPTIONS=--max-old-space-size=2048 JEST_MAX_WORKERS=1 nx run-many --target=test --all --maxWorkers=1",
"test:ui": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 nx test ui --maxWorkers=1",
"test:auth": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 nx test auth --maxWorkers=1",
"test:database": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 nx test database --maxWorkers=1",
"test:utils": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 nx test utils --maxWorkers=1",
"lint:all": "nx run-many --target=lint --all",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"type-check": "pnpm exec tsc --noEmit",
"format:check:tracked": "bash scripts/ci-quality-gate.sh format",
"lint:ci": "bash scripts/ci-quality-gate.sh lint",
"type-check:ci": "bash scripts/ci-quality-gate.sh typecheck",
"build:ci": "bash scripts/ci-quality-gate.sh build",
"verify:ci": "bash scripts/ci-quality-gate.sh all",
"check:staged": "lint-staged",
"check:schema": "node libs/utilities/scripts/check-supabase-schema.js",
"init:db": "node libs/utilities/scripts/init-test-db.mjs",
"configure:sonarqube-mcp": "bash libs/utilities/scripts/configure-sonarqube-mcp.sh",
"download:sonarqube-mcp-jar": "bash libs/utilities/scripts/download-sonarqube-mcp-jar.sh",
"configure:sentry-mcp": "bash libs/utilities/scripts/configure-sentry-mcp.sh",
"setup:github-test-secrets": "bash libs/utilities/scripts/setup-github-test-secrets.sh",
"check:all": "node libs/utilities/scripts/run-all-checks.js",
"check:all:quick": "node libs/utilities/scripts/run-all-checks.js --skip-sonar",
"check:pre-push": "pnpm run verify:ci",
"fix:issues": "node libs/utilities/scripts/fix-issues-interactive.js",
"fix:all": "pnpm run format && pnpm run lint:fix",
"fix:all:auto": "node libs/utilities/scripts/fix-all-automatically.js",
"fix:all:quick": "node libs/utilities/scripts/fix-all-automatically.js --skip-sonar --skip-type-check",
"fix:from-log": "node libs/utilities/scripts/fix-issues-from-log.js",
"detect-fix": "node libs/utilities/scripts/detect-analyze-fix.js",
"detect-fix:quick": "node libs/utilities/scripts/detect-analyze-fix.js --skip-sonar --skip-type-check",
"fix:lint:analyze": "node libs/utilities/scripts/fix-lint-issues-batch.js",
"setup:hooks": "bash libs/utilities/scripts/setup-git-hooks.sh",
"dev:low-ram": "bash libs/utilities/scripts/low-ram-mode.sh website",
"dev:low-ram:admin": "bash libs/utilities/scripts/low-ram-mode.sh admin",
"check:low-ram": "bash libs/utilities/scripts/low-ram-mode.sh check",
"system:memory": "bash libs/utilities/scripts/check-memory.sh",
"cleanup:build-cache": "bash libs/utilities/scripts/cleanup-build.sh",
"cleanup:build-cache:deep": "bash libs/utilities/scripts/cleanup-build.sh --deep",
"sonar": "NODE_OPTIONS=--max-old-space-size=1024 node libs/utilities/scripts/run-sonarqube-local.js",
"sonar:light": "NODE_OPTIONS=--max-old-space-size=768 SONAR_MEMORY_LIMIT=768 node libs/utilities/scripts/run-sonarqube-local.js",
"sonar:skip-tests": "NODE_OPTIONS=--max-old-space-size=1024 node libs/utilities/scripts/run-sonarqube-local.js --skip-tests",
"sonar:skip-build": "NODE_OPTIONS=--max-old-space-size=1024 node libs/utilities/scripts/run-sonarqube-local.js --skip-build",
"sonar:quick": "NODE_OPTIONS=--max-old-space-size=768 SONAR_MEMORY_LIMIT=768 node libs/utilities/scripts/run-sonarqube-local.js --skip-tests --skip-build",
"sonar:report": "node libs/utilities/scripts/sonar-report.js",
"sonar:report:blockers": "node libs/utilities/scripts/sonar-report.js --severity=BLOCKER,CRITICAL --md-only --open-after",
"sonar:report:new-code": "node libs/utilities/scripts/sonar-report.js --new-only --md-only",
"codeql": "bash libs/utilities/scripts/run-codeql-local.sh",
"codeql:upload": "bash libs/utilities/scripts/run-codeql-local.sh --upload",
"codeql:precommit": "bash libs/utilities/scripts/check-codeql-precommit.sh",
"codeql:fix": "node libs/utilities/scripts/fix-codeql-issues.js",
"code-scanning:batch:start": "bash tools/code-scanning-batch-flow.sh start",
"code-scanning:batch:pr": "bash tools/code-scanning-batch-flow.sh pr",
"issues:dedupe:bugs": "bash tools/reconcile-code-scanning-issues.sh dedupe-bugs",
"issues:dedupe:bugs:apply": "bash tools/reconcile-code-scanning-issues.sh dedupe-bugs --apply",
"format": "prettier --write .",
"cleanup:playwright-videos": "bash libs/utilities/scripts/cleanup-playwright-videos.sh",
"prepare": "husky",
"pre-commit:switch": "pnpm run setup:hooks",
"pre-push:switch": "pnpm run setup:hooks",
"pre-push:with-sonar": "cp Rest/other/.husky/pre-push-with-sonar Rest/other/.husky/pre-push && cp Rest/other/.husky/pre-push .git/hooks/pre-push && chmod +x .git/hooks/pre-push && echo '✅ Switched to pre-push with optional SonarQube (enable with: export SONAR_ENABLE_PRE_PUSH=true)'",
"pre-commit:fast": "cp Rest/other/.husky/pre-commit-fast Rest/other/.husky/pre-commit && cp Rest/other/.husky/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✅ Switched to FAST pre-commit checks (no tests)'",
"pre-commit:fast-tests": "cp Rest/other/.husky/pre-commit-fast-tests Rest/other/.husky/pre-commit && cp Rest/other/.husky/pre-commit-fast-tests .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✅ Switched to FAST pre-commit with tests (unit tests only)'",
"pre-commit:with-tests": "cp Rest/other/.husky/pre-commit-with-tests Rest/other/.husky/pre-commit && cp Rest/other/.husky/pre-commit-with-tests .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✅ Switched to pre-commit with tests (unit + integration)'",
"pre-commit:standard": "cp Rest/other/.husky/pre-commit Rest/other/.husky/pre-commit && cp Rest/other/.husky/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✅ Switched to STANDARD pre-commit checks'",
"pre-commit:full": "cp Rest/other/.husky/pre-commit-full Rest/other/.husky/pre-commit && cp Rest/other/.husky/pre-commit-full .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✅ Switched to FULL pre-commit checks (includes E2E)'",
"pre-commit:e2e": "cp Rest/other/.husky/pre-commit-e2e Rest/other/.husky/pre-commit && cp Rest/other/.husky/pre-commit-e2e .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit && echo '✅ Switched to E2E pre-commit checks with auto-resolution'",
"cleanup": "bash libs/utilities/scripts/cleanup-build.sh",
"cleanup:deep": "bash libs/utilities/scripts/cleanup-build.sh --deep",
"cleanup:project": "node libs/utilities/scripts/cleanup-project.js",
"health-check": "node libs/utilities/scripts/project-health-check.js",
"maintenance": "pnpm run cleanup:project && pnpm run health-check",
"setup-env": "node libs/utilities/scripts/setup-env.mjs",
"seed:testing-to-main": "node libs/utilities/scripts/seed-from-testing-to-main.mjs",
"clear:main-db": "node libs/utilities/scripts/clear-main-database.mjs",
"seed:clean": "pnpm run clear:main-db && pnpm run seed:testing-to-main",
"seed": "node tools/seed/seed-all.mjs",
"verify:env": "node libs/utilities/scripts/verify-env-setup.mjs",
"github:delete-failed-actions": "node libs/utilities/scripts/delete-failed-github-actions.mjs",
"github:delete-failed-actions:dry-run": "node libs/utilities/scripts/delete-failed-github-actions.mjs --dry-run",
"generate:options": "node libs/utilities/scripts/generate-options-for-questions.mjs",
"test:admin-login": "node Rest/other/tests/libs/utilities/scripts/run-admin-login-tests.mjs",
"test:admin-login:fast": "pnpm exec jest Rest/other/tests/admin/admin-login-api.test.ts --verbose",
"test:admin-login:watch": "pnpm exec jest Rest/other/tests/admin/ --watch",
"test:admin-login:coverage": "cd apps/website && pnpm exec jest ../../Rest/other/tests/admin/ --coverage --config jest.config.js",
"test:admin": "node libs/utilities/scripts/run-admin-tests.mjs",
"test:admin:all": "node libs/utilities/scripts/run-admin-tests.mjs all",
"test:admin:watch": "node libs/utilities/scripts/run-admin-tests.mjs watch",
"test:admin:auth": "node libs/utilities/scripts/run-admin-tests.mjs category \"Authentication Tests\"",
"test:admin:api": "node libs/utilities/scripts/run-admin-tests.mjs category \"API Tests\"",
"test:admin:ui": "node libs/utilities/scripts/run-admin-tests.mjs category \"UI Component Tests\"",
"test:admin:integration": "node libs/utilities/scripts/run-admin-tests.mjs category \"Integration Tests\"",
"test:e2e": "APP_ENV=test NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --workers=1",
"test:e2e:ui": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --ui --workers=1",
"test:e2e:headed": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --headed --workers=1",
"test:e2e:debug": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --debug --workers=1",
"test:e2e:report": "playwright show-report",
"test:e2e:install": "playwright install",
"test:e2e:codegen": "NODE_OPTIONS=--max-old-space-size=1536 playwright codegen",
"test:e2e:chromium": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --project=chromium --workers=1",
"test:e2e:firefox": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --project=firefox --workers=1",
"test:e2e:webkit": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --project=webkit --workers=1",
"test:e2e:mobile": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts --project='Mobile Chrome' --project='Mobile Safari' --workers=1",
"test:questions": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=questions --maxWorkers=1 --silent",
"test:questions:fast": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 JEST_NO_CACHE=true jest --config=apps/website/jest.config.js --testPathPatterns=questions --maxWorkers=1 --no-cache --silent",
"test:unit": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --maxWorkers=1 --silent",
"test:unit:fast": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 JEST_NO_CACHE=true jest --config=apps/website/jest.config.js --maxWorkers=1 --no-cache --silent",
"test:unit:sequential": "NODE_OPTIONS=--max-old-space-size=512 JEST_RUN_IN_BAND=true jest --config=apps/website/jest.config.js --runInBand --silent",
"test:unit:vitest": "vitest run",
"test:unit:guided-flow": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=guided-flow --maxWorkers=1 --silent",
"test:unit:freestyle-flow": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=freestyle-flow --maxWorkers=1 --silent",
"test:unit:admin": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=admin --maxWorkers=1 --silent",
"test:unit:shared-components": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=shared-components --maxWorkers=1 --silent",
"test:admin-navbar": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=AdminNavbar --maxWorkers=1 --silent",
"test:admin-navbar:watch": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=AdminNavbar --watch --maxWorkers=1",
"test:admin-navbar:fast": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 JEST_NO_CACHE=true jest --config=apps/website/jest.config.js --testPathPatterns=AdminNavbar --maxWorkers=1 --no-cache --silent",
"test:integration": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns=integration --maxWorkers=1 --silent",
"test:integration:guided-flow": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns='(guided-flow|integration)' --maxWorkers=1 --silent",
"test:integration:freestyle-flow": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns='(freestyle-flow|integration)' --maxWorkers=1 --silent",
"test:integration:admin": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns='(admin|integration)' --maxWorkers=1 --silent",
"test:integration:shared-components": "NODE_OPTIONS=--max-old-space-size=768 JEST_MAX_WORKERS=1 jest --config=apps/website/jest.config.js --testPathPatterns='(shared-components|integration)' --maxWorkers=1 --silent",
"test:e2e:guided-flow": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/guided-flow/ --workers=1",
"test:e2e:freestyle-flow": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/freestyle-flow/ --workers=1",
"test:e2e:admin:sharded": "APP_ENV=test NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=apps/admin/tests/config/playwright.config.ts --workers=2",
"test:e2e:admin": "APP_ENV=test NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=apps/admin/tests/config/playwright.config.ts --workers=1",
"test:e2e:admin:questions:basic": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.basic.spec.ts --workers=1",
"test:e2e:admin:questions:crud": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.crud.spec.ts --workers=1",
"test:e2e:admin:questions:search": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.search.spec.ts --workers=1",
"test:e2e:admin:questions:pagination": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.pagination.spec.ts --workers=1",
"test:e2e:admin:questions:bulk": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.bulk.spec.ts --workers=1",
"test:e2e:admin:questions:stats": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.stats.spec.ts --workers=1",
"test:e2e:admin:questions:validation": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.validation.spec.ts --workers=1",
"test:e2e:admin:questions": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-questions-page.basic.spec.ts tests/e2e/admin/admin-questions-page.crud.spec.ts tests/e2e/admin/admin-questions-page.search.spec.ts tests/e2e/admin/admin-questions-page.pagination.spec.ts tests/e2e/admin/admin-questions-page.bulk.spec.ts tests/e2e/admin/admin-questions-page.stats.spec.ts tests/e2e/admin/admin-questions-page.validation.spec.ts --workers=1",
"test:e2e:admin:login:basic": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-login.basic.spec.ts --workers=1",
"test:e2e:admin:login:validation": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-login.validation.spec.ts --workers=1",
"test:e2e:admin:login:flow": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-login.flow.spec.ts --workers=1",
"test:e2e:admin:login:split": "NODE_OPTIONS=--max-old-space-size=1536 playwright test --config=tests/config/playwright.config.ts tests/e2e/admin/admin-login.basic.spec.ts tests/e2e/admin/admin-login.validation.spec.ts tests/e2e/admin/admin-login.flow.spec.ts --workers=1",
"git-hooks:standard": "bash libs/utilities/scripts/configure-git-hooks.sh standard",
"git-hooks:admin-tests": "bash libs/utilities/scripts/configure-git-hooks.sh admin-tests",
"git-hooks:fast": "bash libs/utilities/scripts/configure-git-hooks.sh fast",
"git-hooks:comprehensive": "bash libs/utilities/scripts/configure-git-hooks.sh comprehensive",
"git-hooks:status": "bash libs/utilities/scripts/configure-git-hooks.sh status",
"dev:memory-check": "bash libs/utilities/scripts/check-memory.sh"
},
"dependencies": {
"@daily-co/daily-js": "^0.84.0",
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@reactour/tour": "^3.8.0",
"@sentry/nextjs": "^10.28.0",
"@supabase/supabase-js": "^2.76.1",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/bcryptjs": "^2.4.6",
"@types/dompurify": "^3.0.5",
"@types/jsonwebtoken": "^9.0.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-react": "^5.18.0",
"@vercel/speed-insights": "^1.2.0",
"axios": "^1.13.6",
"bcryptjs": "^3.0.2",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.7.0",
"clsx": "^2.1.1",
"critters": "^0.0.23",
"date-fns": "^4.1.0",
"dompurify": "3.4.0",
"dotenv": "^17.2.3",
"firebase": "^12.11.0",
"html-to-image": "^1.11.13",
"jotai": "^2.15.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.542.0",
"next": "^16.2.3",
"next-auth": "^4.24.13",
"node-cron": "^4.2.1",
"node-fetch": "^2.7.0",
"nuqs": "^2.7.2",
"react": "^19.0.0",
"react-day-picker": "^9.11.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.0.0",
"react-syntax-highlighter": "^16.1.0",
"shiki": "^3.17.0",
"sonner": "^2.0.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-react": "^5.31.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"validator": "^13.15.23",
"xss": "^1.0.15",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@mermaid-js/mermaid-cli": "^11.12.0",
"@nx/eslint": "^22.6.1",
"@nx/jest": "^22.6.1",
"@nx/next": "^22.6.1",
"@nx/vite": "^22.6.1",
"@playwright/test": "^1.56.0",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.13.5",
"@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/node": "^20",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitest/coverage-v8": "3.2.4",
"autoprefixer": "^10.4.21",
"dotenv-cli": "^11.0.0",
"eslint": "^9",
"eslint-config-next": "15.5.1",
"glob": "^11.1.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"js-yaml": "^3.14.2",
"lint-staged": "^16.1.5",
"minimatch": "^10.2.4",
"msw": "^2.12.14",
"null-loader": "^4.0.1",
"nx": "^22.6.1",
"oe-sonar-mcp": "^1.0.4",
"prettier": "^3.7.4",
"puppeteer": "^23.11.1",
"semver": "^7.7.3",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.4.5",
"tsx": "^4.20.5",
"typescript": "^5",
"vercel": "^50.44.0",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "3.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,json,md,html,yml,yaml}": [
"prettier --write"
]
},
"nx": {},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"overrides": {
"node-forge": "1.3.3",
"jws": "3.2.3",
"undici": "7.24.5",
"rollup": "4.59.0",
"preact": "10.28.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"@modelcontextprotocol/sdk": "1.27.1",
"monaco-editor": "0.53.0",
"hono": "4.12.12",
"@hono/node-server": "1.19.13",
"immutable": "5.1.5",
"swagger-ui-react>immutable": "3.8.3",
"axios": "1.15.0",
"lodash": "4.18.1",
"lodash-es": "4.18.1",
"dompurify": "3.4.0",
"@tootallnate/once": "3.0.1",
"smol-toml": "1.6.1",
"srvx": "0.11.13",
"@vercel/static-config>ajv": "8.18.0",
"@vercel/python-analysis>minimatch": "10.2.4",
"tar": "7.5.11",
"@vercel/fun>tar": "7.5.11",
"path-to-regexp": "8.4.0",
"@vercel/node>path-to-regexp": "6.3.0",
"@vercel/backends>path-to-regexp": "8.4.0",
"@vercel/fun>path-to-regexp": "8.4.0",
"picomatch@^2.0.0": "2.3.2",
"picomatch@^4.0.0": "4.0.4",
"yaml": "2.8.3",
"@isaacs/brace-expansion": "5.0.1",
"flatted": "3.4.2",
"basic-ftp": "5.2.2",
"koa": "3.1.2"
}
}
}