-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.36 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
{
"name": "lexia",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"inngest:dev": "npx inngest-cli@latest dev",
"test:extractor": "npx tsx scripts/test-extractor.ts",
"test:ocr": "npx tsx scripts/test-ocr.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@clerk/nextjs": "^7.2.3",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@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.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@sentry/nextjs": "^10.50.0",
"@stripe/stripe-js": "^9.3.1",
"@supabase/supabase-js": "^2.104.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.38.0",
"inngest": "^4.2.4",
"lucide-react": "^1.8.0",
"next": "16.2.4",
"pdf-parse": "^2.4.5",
"react": "19.2.4",
"react-cookie-consent": "^10.0.1",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"resend": "^6.12.2",
"sharp": "^0.34.5",
"stripe": "^22.1.0",
"svix": "^1.91.1",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"tesseract.js": "^7.0.0",
"tw-animate-css": "^1.4.0",
"xlsx": "^0.18.5",
"zod": "^4.3.6"
},
"pnpm": {
"onlyBuiltDependencies": ["@sentry/cli", "sharp", "tesseract.js"]
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sharp": "^0.32.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/ui": "^4.1.4",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"jsdom": "^29.0.2",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.4"
}
}