-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.39 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.39 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
{
"name": "iona-crm",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:billing": "jest __tests__/unit/billing/",
"test:billing:e2e": "playwright test __tests__/e2e/billing/",
"test:e2e:helper": "npx tsx scripts/test-billing-e2e.ts",
"db:setup": "npx tsx lib/db/setup.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:push": "npx supabase db push",
"db:types": "npx supabase gen types typescript --project-id YOUR_PROJECT_ID --schema public > lib/db/database.types.ts",
"db:studio": "npx supabase studio",
"test:load": "k6 run __tests__/load/smoke.js",
"lint": "next lint"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.30",
"@ai-sdk/react": "^2.0.44",
"@anthropic-ai/sdk": "^0.59.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-pdf/renderer": "^4.3.2",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.90.1",
"@tailwindcss/postcss": "4.1.7",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.15.18",
"@types/papaparse": "^5.3.16",
"@types/react": "19.1.4",
"@types/react-dom": "19.1.5",
"@vercel/analytics": "^1.6.1",
"ai": "^5.0.44",
"autoprefixer": "^10.4.21",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"exceljs": "^4.4.0",
"framer-motion": "^12.23.12",
"gray-matter": "^4.0.3",
"lucide-react": "^0.511.0",
"marked": "^17.0.0",
"nanoid": "^5.0.7",
"next": "15.6.0-canary.60",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"openai": "^5.20.2",
"p5": "^2.0.3",
"papaparse": "^5.5.3",
"pgvector": "^0.2.1",
"postcss": "^8.5.3",
"radix-ui": "^1.4.2",
"react": "19.1.0",
"react-day-picker": "^9.11.1",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"recharts": "^3.1.0",
"resend": "^6.9.1",
"server-only": "^0.0.1",
"sonner": "^2.0.7",
"stripe": "^18.1.0",
"swr": "^2.3.3",
"tailwind-merge": "^3.3.0",
"tailwindcss": "4.1.7",
"tw-animate-css": "^1.3.0",
"typescript": "^5.8.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@types/google-one-tap": "^1.2.7",
"@types/jest": "^29.5.0",
"@types/node": "^20",
"@types/p5": "^1.7.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"dotenv-cli": "^11.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"pg": "^8.12.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.0",
"tsx": "^4.15.7",
"typescript": "^5"
}
}