-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.22 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.22 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
{
"name": "cedar-mastra-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "dotenv -e .env -- concurrently -n \"NEXT,MASTRA\" -c \"blue.bold,magenta.bold\" \"npm run dev:next\" \"npm run dev:mastra\"",
"dev:next": "next dev --turbopack",
"dev:mastra": "npm --prefix src/backend run dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty": "npx prettier --write .",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts"
},
"dependencies": {
"@google/genai": "^1.21.0",
"@mastra/client-js": "^0.13.2",
"@mastra/voice-google": "^0.11.6",
"@opennextjs/cloudflare": "^1.9.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tiptap/react": "^3.4.2",
"ai": "^5.0.44",
"cedar-os": "^0.1.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"diff": "^8.0.2",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.11",
"lucide-react": "^0.532.0",
"marked": "^16.3.0",
"motion": "^12.23.12",
"motion-plus-react": "^1.5.1",
"next": "15.4.4",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"uuid": "^11.1.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"concurrently": "^8.2.1",
"dotenv-cli": "^7.3.0",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"prettier": "^3.2.4",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.6",
"typescript": "^5",
"wrangler": "^4.40.2"
}
}