-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.38 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
{
"name": "cedar",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run rw && npm i && USE_LOCAL_SRC=true next dev --turbopack",
"dev:test": "npm run pb && npm i && USE_LOCAL_SRC=false next dev --turbopack",
"dev:manual": "npm i && USE_LOCAL_SRC=false next dev --turbopack",
"pb": "node scripts/prepare-build.mjs",
"pm": "node scripts/prepare-manual.mjs",
"build": "next build",
"rw": "node scripts/restore-workspace.mjs",
"start": "next start",
"lint": "next lint",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"test": "jest",
"ust": "supabase gen types typescript --project-id ttjnurbqxigvmtlsvclx --schema public > src/app/examples/product-roadmap/supabase/database.types.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/elevenlabs": "^0.0.3",
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/groq": "^1.2.9",
"@ai-sdk/mistral": "^1.2.8",
"@ai-sdk/openai": "^2.0.0-beta.6",
"@ai-sdk/react": "^2.0.0-beta.14",
"@cedar-os/backend": "workspace:*",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@types/diff": "^8.0.0",
"ai": "^5.0.0-beta.14",
"cedar-os": "workspace:*",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^8.0.2",
"fast-json-patch": "^3.1.1",
"lucide-react": "^0.525.0",
"motion": "^12.23.9",
"next": "^15.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"reactflow": "^11.11.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.4",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^30.0.5",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}