-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.59 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
{
"name": "ivyquest",
"version": "15.0.0",
"private": true,
"scripts": {
"dev": "next dev -p 3006",
"build": "next build",
"start": "next start -p 3006",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test:scoring": "node scripts/test-scoring.js",
"test:e2e": "npx playwright test",
"test:e2e:huda": "npx playwright test e2e/huda-benchmark.spec.ts",
"test:e2e:agents": "npx playwright test e2e/v10-agents.spec.ts",
"test:e2e:full": "npx playwright test e2e/full-assessment.spec.ts",
"test:all": "npm run test:scoring && npm run test:e2e"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@react-pdf/renderer": "^4.3.1",
"@react-three/drei": "^9.114.3",
"@react-three/fiber": "^8.17.10",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.89.0",
"@tanstack/react-query": "^5.59.20",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.9",
"immer": "^10.1.1",
"lucide-react": "^0.454.0",
"next": "14.2.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"tailwind-merge": "^2.5.4",
"three": "^0.169.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.169.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.14",
"playwright": "^1.57.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}