-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.86 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
{
"name": "spanish-language-app",
"version": "1.0.0",
"description": "A fun Spanish language learning app with interactive games",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix"
},
"dependencies": {
"@deepgram/sdk": "^4.11.2",
"@elevenlabs/elevenlabs-js": "^2.14.0",
"@headlessui/react": "^2.2.7",
"@heroicons/react": "^2.2.0",
"@hookstate/core": "^4.0.2",
"@hookstate/localstored": "^4.0.2",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.57.2",
"@temporalio/client": "^1.14.1",
"clsx": "^2.0.0",
"csv-parser": "^3.2.0",
"date-fns": "^2.30.0",
"dotenv": "^17.2.2",
"framer-motion": "^10.16.5",
"lucide-react": "^0.555.0",
"mixpanel-browser": "^2.70.0",
"next": "^16.1.1",
"openai": "^5.19.1",
"papaparse": "^5.5.3",
"posthog-js": "^1.318.2",
"react": "^18.0.0-0",
"react-dom": "^18.0.0-0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"stripe": "^18.5.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.15",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^9",
"eslint-config-next": "^16.1.1",
"ffmpeg-static": "^5.2.0",
"music-metadata": "^11.8.3",
"postcss": "^8",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.15",
"typescript": "^5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}