-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 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
{
"name": "@supabase/docs",
"private": true,
"type": "module",
"scripts": {
"dev": "bun run generate && next dev",
"generate": "bun ../../apps/cli/scripts/generate-docs.ts",
"build": "bun run generate && next build"
},
"dependencies": {
"fumadocs-core": "^16.8.1",
"fumadocs-mdx": "^14.3.1",
"fumadocs-ui": "^16.8.1",
"next": "^16.2.5",
"react": "^19.2.5",
"react-dom": "^19.2.5"
},
"devDependencies": {
"@types/mdx": "^2.0.13",
"@types/node": "^25.6.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"typescript": "^6.0.3"
},
"nx": {
"implicitDependencies": [
"supabase"
],
"targets": {
"generate": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm run generate",
"cwd": "{projectRoot}"
},
"inputs": [
"{projectRoot}/**/*",
"{workspaceRoot}/apps/cli/src/**/*",
"{workspaceRoot}/apps/cli/scripts/generate-docs.ts",
"sharedGlobals"
],
"outputs": [
"{workspaceRoot}/apps/docs/content/docs/commands",
"{workspaceRoot}/apps/docs/public"
]
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm run build",
"cwd": "{projectRoot}"
},
"dependsOn": [
"generate"
],
"outputs": [
"{projectRoot}/.next"
]
},
"dev": {
"executor": "nx:run-commands",
"options": {
"command": "pnpm run dev",
"cwd": "{projectRoot}"
}
}
}
}
}