-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "cortex-digital",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.x"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"server": "node proxy.js",
"eval": "node evals/runEvals.js",
"eval:mock": "node evals/runEvals.js --mock",
"test": "vitest run",
"test:coverage": "vitest run --coverage --coverage.reporter=text --coverage.reporter=json-summary --coverage.reporter=lcov",
"coverage:badge": "node scripts/update-coverage-badge.mjs",
"test:watch": "vitest"
},
"dependencies": {
"@arcjet/node": "^1.4.0",
"@clerk/clerk-js": "^6.8.0",
"@posthog/react": "^1.9.0",
"@sentry/react": "^10.51.0",
"@supabase/supabase-js": "^2.106.0",
"axios": "^1.16.0",
"cors": "^2.8.6",
"crypto-js": "^4.2.0",
"docx": "^9.6.1",
"dompurify": "^3.1.6",
"exceljs": "^4.4.0",
"express": "^5.2.1",
"express-rate-limit": "^8.5.0",
"langfuse": "^3.38.20",
"mammoth": "^1.12.0",
"openai": "^6.38.0",
"posthog-js": "^1.372.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-swipeable": "^7.0.2",
"use-long-press": "^3.3.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@sentry/vite-plugin": "^5.2.1",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.0.0",
"prettier": "^3.8.3",
"vite": "^6.3.0",
"vitest": "^4.1.6"
}
}