-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpackage.json
More file actions
168 lines (168 loc) · 6.4 KB
/
Copy pathpackage.json
File metadata and controls
168 lines (168 loc) · 6.4 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "nextjs-app",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node scripts/dev-prebuild.mjs && next dev",
"dev:full": "pnpm cookbook:build && pnpm rawmdx:export && next dev",
"build": "pnpm prebuild:local && next build",
"build:ci": "pnpm prebuild:ci && next build",
"start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"cf:build": "pnpm prebuild:ci && pnpm dlx @cloudflare/next-on-pages@1",
"search:build": "tsx src/scripts/build-search-index.ts",
"cookbook:build": "tsx src/scripts/build-complete-cookbook.ts",
"rawmdx:export": "tsx src/scripts/export-raw-mdx.ts",
"cf:dev": "pnpm cf:build && npx wrangler pages dev --port 3000 --log-level=debug",
"postinstall": "git submodule update --init --recursive",
"copy-assets-file": "tsx src/scripts/copy-assets-file.ts",
"copy-openapi": "tsx src/scripts/copy-openapi.ts",
"fetch-openapi": "tsx src/scripts/fetch-dashboard-openapi.ts",
"api:fetch": "tsx src/scripts/fetch-dashboard-openapi.ts",
"api:audit": "tsx src/scripts/api/audit.ts",
"api:audit:legacy": "tsx src/scripts/api/audit.ts --legacy",
"api:review": "tsx src/scripts/api/interactive.ts",
"api:auto-accept": "tsx src/scripts/api/auto-accept.ts",
"api:apply": "tsx src/scripts/api/apply.ts",
"api:promote": "tsx src/scripts/api/apply.ts --promote-draft",
"api:build": "tsx src/scripts/api/build.ts",
"api:build:strict": "tsx src/scripts/api/build.ts --strict",
"api:extract-strings": "tsx src/scripts/api/extract-spec-strings.ts",
"api:translate": "tsx src/scripts/api/translate-catalog.ts",
"api:localize-labels": "tsx src/scripts/api/localize-fr-labels.ts",
"api:build:fr": "tsx src/scripts/api/build-fr.ts",
"api:migrate": "tsx src/scripts/api/migrate-from-legacy.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:api": "pnpm -s api:apply && vitest run tests/api-docs",
"test:api:freshness": "pnpm -s api:apply && RUN_FRESHNESS=1 vitest run tests/api-docs/freshness.test.ts",
"prebuild": "pnpm prebuild:local",
"prebuild:local": "pnpm -s cookbook:build && pnpm -s copy-openapi && pnpm search:build && pnpm -s copy-assets-file",
"prebuild:ci": "pnpm -s cookbook:build && pnpm -s rawmdx:export && pnpm -s copy-openapi && pnpm search:build && pnpm -s copy-assets-file",
"build-api-docs": "pnpm api:build",
"check-links": "./scripts/check-links.sh",
"check-links:only": "./scripts/check-links.sh --no-build",
"spellcheck": "uvx codespell src/content/en",
"spellcheck:fix": "uvx codespell -w src/content/en",
"spellcheck:all": "uvx codespell --toml .codespell-src.toml src/",
"mdlint": "markdownlint-cli2",
"mdlint:fix": "markdownlint-cli2 --fix",
"mdlint:report": "./scripts/mdlint-report.sh",
"mdlint:apply": "./scripts/mdlint-apply.sh",
"vale": "./scripts/vale.sh",
"vale:report": "./scripts/vale-report.sh",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -o storybook-static"
},
"dependencies": {
"@joycostudio/marquee": "^0.0.11",
"@lingo.dev/cli": "^1.5.0",
"@lingo.dev/react": "^1.5.0",
"@lingo.dev/spec": "^1.5.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.4.5",
"@next/third-parties": "^15.5.4",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@speakeasy-api/docs-md": "^0.2.34",
"@speakeasy-api/docs-md-react": "^0.2.34",
"@types/mdx": "^2.0.13",
"@wavesurfer/react": "^1.0.11",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^12.23.12",
"jotai": "^2.13.1",
"lucide-react": "^0.536.0",
"minisearch": "^7.1.2",
"negotiator": "^1.0.0",
"next": "^15.5.8",
"next-mdx-remote": "^6.0.0",
"next-mdx-remote-client": "^2.1.7",
"next-themes": "^0.4.6",
"nuqs": "^2.4.3",
"react": "^19.2.2",
"react-dom": "^19.2.2",
"react-syntax-highlighter": "^15.6.1",
"react-use-measure": "^2.1.7",
"remark-directive": "^4.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-heading-id": "^1.0.1",
"remark-mdx": "^3.1.0",
"remark-mdx-frontmatter": "^5.2.0",
"remark-parse": "^11.0.0",
"tailwind-merge": "^3.3.1",
"ts-pattern": "^5.8.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vaul": "^1.1.2",
"wavesurfer.js": "^7.10.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.14",
"@storybook/addon-themes": "^10.4.2",
"@storybook/nextjs-vite": "^10.4.2",
"@storybook/react": "^10.4.2",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/typography": "^0.5.16",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mdx": "^2.0.13",
"@types/negotiator": "^0.6.4",
"@types/node": "^20.0.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/remark-heading-id": "^1.0.0",
"acorn": "^8.15.0",
"eslint": "^8.0.0",
"eslint-config-next": "^16.1.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.1",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"markdownlint-cli2": "^0.21.0",
"postcss": "^8.5.6",
"remark": "^15.0.1",
"storybook": "^10.4.2",
"tailwindcss": "^4.1.12",
"tsx": "^4.20.4",
"tw-animate-css": "^1.3.6",
"typescript": "^5.9.3",
"unist-util-visit-parents": "^6.0.1",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=18.0"
},
"packageManager": "pnpm@10.26.1",
"pnpm": {
"overrides": {
"tar": ">=7.5.3"
},
"patchedDependencies": {
"next@15.5.9": "patches/next@15.5.9.patch"
}
}
}