forked from decocms/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.18 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.18 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
{
"name": "@deco/chat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"cd apps/web && npm run dev\" \"cd apps/api && npm run dev\"",
"docs:dev": "cd docs && npm run dev",
"docs:deploy": "cd docs && npm run deploy",
"test": "vitest run",
"test:watch": "vitest",
"build": "PWD=$PWD/apps/web deno run build",
"lint": "deno lint --config ./package.json .",
"fmt": "biome format --write",
"fmt:check": "biome format",
"version": "tsc --version",
"check": "NODE_OPTIONS=--max-old-space-size=16384 tsc --noEmit",
"ui": "npx shadcn@latest add -c ./packages/ui",
"clean": "rm -f deno.lock package-lock.json bun.lock && rm -rf node_modules apps/*/node_modules packages/*/node_modules",
"db:repair": "supabase migration repair --status reverted",
"db:migration": "supabase migration up --linked --include-all",
"db:migration:create": "supabase migration new",
"npm:build": "npm run build --workspace=apps/web",
"db:types": "npx supabase gen types typescript --project-id ozksgdmyrqcxcwhnbepg --schema public > packages/sdk/src/storage/supabase/schema.ts"
},
"workspaces": [
"apps/*",
"packages/*"
],
"compilerOptions": {
"experimentalDecorators": true,
"lib": [
"deno.window",
"dom",
"esnext",
"deno.ns",
"deno.unstable",
"dom.iterable"
],
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"exclude": [
".github/",
"**/.wrangler",
"apps/web/public/**",
"packages/runtime/src/cf-imports.ts",
"packages/create-deco/index.js",
"docs/server/**",
"docs/view/**"
],
"lock": false,
"unstable": [
"kv",
"raw-imports"
],
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@types/node": "^24.6.2",
"concurrently": "^9.2.1",
"supabase": "^2.48.3",
"typescript": "^5.9.3",
"vitest": "3.2.4",
"wrangler": "4.42.2"
},
"overrides": {
"ai": "^5.0.61",
"zod": "^3.25.76"
},
"engines": {
"node": ">=24.0.0"
},
"lint": {
"plugins": [
"./plugins/ensure-tailwind-design-system-tokens.ts",
"./plugins/enforce-kebab-case-file-names.ts"
]
}
}