-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.64 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.64 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
{
"name": "@decocx/docs",
"version": "1.0.0",
"description": "Deco Cx documentation",
"scripts": {
"dev": "concurrently \"bun run dev:client\" \"NODE_ENV=development bun --hot run server/main.ts\"",
"dev:client": "cd client && astro dev",
"dev:tunnel": "deco link -p 3000 -- bun run dev",
"build": "bun run build:client && bun run build:server:bun",
"build:client": "cd client && astro build",
"check": "cd client && astro sync > /dev/null 2>&1 && tsc --noEmit",
"build:server:bun": "NODE_ENV=production bun build server/main.ts --target=bun --outfile=dist/server/main.js",
"build:server:wrangler": "wrangler build && mkdir -p dist/server && mv ./dist/main.js dist/server/main.js",
"start": "NODE_ENV=production bun run dist/server/main.js",
"deploy": "bun run build && deco deploy ./dist/server -y -f -t $DECO_DEPLOY_TOKEN",
"gen": "deco gen --output=shared/deco.gen.ts",
"astro": "cd client && astro",
"index-docs": "bun run scripts/index-docs.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.14",
"@ai-sdk/openai-compatible": "^2.0.16",
"@astrojs/mdx": "^4.3.1",
"@astrojs/react": "^4.3.0",
"@decocms/runtime": "1.1.3",
"@langchain/textsplitters": "^1.0.1",
"@supabase/supabase-js": "^2.91.0",
"@tailwindcss/vite": "^4.0.7",
"ai": "^6.0.44",
"astro": "^5.6.1",
"lucide-react": "^0.525.0",
"react": "^19.2.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.0.7",
"typescript": "^5.9.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"concurrently": "^9.2.1",
"pagefind": "^1.4.0"
},
"engines": {
"node": ">=22.0.0"
}
}