-
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.96 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.96 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": "@upbeat-works/edgecms",
"private": true,
"type": "module",
"scripts": {
"db:migrations:local": "wrangler d1 migrations apply DB --local",
"db:migrations": "wrangler d1 migrations apply DB --remote",
"build": "react-router build",
"cf-typegen": "wrangler types",
"deploy": "npm run db:migrations && npm run build && wrangler deploy",
"dev": "npm run db:migrations:local && react-router dev",
"postinstall": "npm run cf-typegen",
"preview": "npm run build && vite preview",
"typecheck": "npm run cf-typegen && react-router typegen && tsc -b",
"format": "prettier --write ."
},
"dependencies": {
"@ai-sdk/openai": "^2.0.10",
"@paralleldrive/cuid2": "^2.2.2",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.7",
"@remix-run/form-data-parser": "^0.10.1",
"@types/react-window": "^1.8.8",
"@uiw/react-md-editor": "^4.0.8",
"ai": "^5.0.10",
"better-auth": "1.3.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.2",
"exponential-backoff": "^3.1.2",
"isbot": "^5.1.27",
"lodash-es": "^4.17.21",
"lucide-react": "^0.524.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-intersection-observer": "^9.16.0",
"react-markdown": "^10.1.0",
"react-router": "^7.5.3",
"react-window": "^1.8.11",
"rehype-sanitize": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.11.4",
"@react-router/dev": "^7.5.3",
"@tailwindcss/vite": "^4.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.9",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.0.0",
"tw-animate-css": "^1.3.6",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-tsconfig-paths": "^5.1.4",
"wrangler": "^4.22.0"
},
"cloudflare": {
"bindings": {
"DB": {
"description": "D1 database for storing CMS content, user data, translations, and versioning information."
},
"CACHE": {
"description": "KV namespace for caching rendered content, API responses, and temporary data."
},
"MEDIA_BUCKET": {
"description": "R2 bucket for storing uploaded media files, images, and other static assets."
},
"BACKUPS_BUCKET": {
"description": "R2 bucket for storing database backups and version snapshots."
},
"RATE_LIMITER": {
"description": "Rate limiting binding to prevent abuse and control API request frequency."
},
"RELEASE_VERSION_WORKFLOW": {
"description": "Workflow binding for handling content version releases and publishing."
},
"ROLLBACK_VERSION_WORKFLOW": {
"description": "Workflow binding for rolling back to previous content versions."
},
"AI_TRANSLATE_WORKFLOW": {
"description": "Workflow binding for AI-powered translation of missing content keys."
},
"AUTH_SECRET": {
"description": "Secret key for better-auth authentication. Generate using `openssl rand -hex 32`."
},
"OPENAI_API_KEY": {
"description": "OpenAI API key for AI-powered translations. Get from https://platform.openai.com/api-keys"
},
"BASE_URL": {
"description": "Base URL for the application. Used for better-auth trusted origins."
},
"TRUSTED_ORIGINS": {
"description": "Trusted origins for better-auth. Used for better-auth trusted origins."
}
}
}
}