-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.89 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
{
"name": "flashlearn-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"seed:standards": "tsx scripts/seedStandards.ts",
"seed:finals-promo": "tsx --env-file=.env.local scripts/seedFinalsPromo.ts",
"press:short-links": "tsx --env-file=.env.local scripts/generatePressShortLinks.ts",
"engagement-check": "tsx --env-file=.env.local scripts/engagementCheck.ts",
"check:providers": "tsx --env-file=.env.local scripts/checkProviders.ts"
},
"config": {
"mongodbMemoryServer": {
"version": "6.0.14"
}
},
"dependencies": {
"@ai-sdk/cerebras": "^2.0.54",
"@ai-sdk/google": "^3.0.80",
"@ai-sdk/mistral": "^3.0.37",
"@ai-sdk/openai-compatible": "^2.0.48",
"@google/genai": "^0.10.0",
"@google/generative-ai": "^0.24.1",
"@headlessui/react": "^2.2.1",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.0.1",
"@powersync/react": "^1.8.1",
"@powersync/web": "^1.27.0",
"@radix-ui/react-toast": "^1.2.14",
"@upstash/qstash": "^2.10.1",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.35.4",
"@upstash/search": "^0.1.5",
"@vercel/analytics": "^1.5.0",
"ai": "^6.0.201",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.2",
"chart.js": "^4.4.9",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.9.0",
"crypto-random-string": "^5.0.0",
"form-data": "^4.0.2",
"gray-matter": "^4.0.3",
"html-to-image": "^1.11.13",
"lucide-react": "^0.501.0",
"mailgun.js": "^12.0.1",
"mongodb": "^6.15.0",
"mongoose": "^8.13.2",
"motion": "^12.12.2",
"next": "15.3.8",
"next-auth": "^4.24.5",
"nodemailer": "^6.10.1",
"papaparse": "^5.5.3",
"pdf-parse": "^2.4.5",
"react": "^19.0.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.55.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"resend": "^4.7.0",
"stripe": "^20.3.1",
"tailwind-merge": "^3.3.1",
"youtube-transcript": "^1.2.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/papaparse": "^5.3.16",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.3.0",
"ignore-loader": "^0.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mongodb-memory-server": "^11.0.1",
"tailwindcss": "^4.1.13",
"tsx": "^4.21.0",
"typescript": "^5"
}
}