-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.92 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
{
"name": "qf-api-docs",
"version": "1.0.0",
"private": true,
"packageManager": "yarn@1.22.19",
"scripts": {
"deploy:pages": "yarn run build && wrangler pages deploy build",
"docusaurus": "npx docusaurus",
"llms:sync": "node scripts/sync-static-llms-txt.js",
"test": "node --test tests/",
"postbuild:seo": "node scripts/postbuild-seo.js",
"postgen-api-cleanup": "node scripts/prune-generated-api-aliases.js",
"postgen-api-sidebars": "node scripts/set-api-displayed-sidebars.js",
"start": "yarn gen-all && npx docusaurus start",
"build": "yarn gen-all && npx docusaurus build && yarn postbuild:seo",
"swizzle": "npx docusaurus swizzle",
"deploy": "npx docusaurus deploy",
"clear": "npx docusaurus clear",
"serve": "npx docusaurus serve",
"write-translations": "npx docusaurus write-translations",
"write-heading-ids": "npx docusaurus write-heading-ids",
"typecheck": "tsc",
"gen-api-docs": "npx docusaurus gen-api-docs",
"clean-api-docs": "npx docusaurus clean-api-docs",
"gen-api-docs:version": "npx docusaurus gen-api-docs:version",
"clean-api-docs:version": "npx docusaurus clean-api-docs:version",
"gen-all": "npx docusaurus gen-api-docs all && npx docusaurus gen-api-docs:version content_apis_versioned:all && npx docusaurus gen-api-docs:version user_related_apis_versioned:all && npx docusaurus gen-api-docs:version oauth2_apis_versioned:all && npx docusaurus gen-api-docs:version search_apis_versioned:all && yarn postgen-api-cleanup && yarn postgen-api-sidebars",
"clean-all": "npx docusaurus clean-api-docs all && npx docusaurus clean-api-docs:version content_apis_versioned:all && npx docusaurus clean-api-docs:version user_related_apis_versioned:all && npx docusaurus clean-api-docs:version oauth2_apis_versioned:all && npx docusaurus clean-api-docs:version search_apis_versioned:all",
"re-gen": "yarn clean-all && yarn gen-all"
},
"dependencies": {
"@docusaurus/core": ">=2.0.1 <2.3.0",
"@docusaurus/plugin-google-gtag": "^2.4.1",
"@docusaurus/preset-classic": ">=2.0.1 <2.3.0",
"@docusaurus/theme-mermaid": "2.2.0",
"@mdx-js/react": "^1.6.22",
"clsx": "^1.2.1",
"docusaurus-plugin-openapi-docs": "^1.7.3",
"docusaurus-theme-openapi-docs": "^1.7.3",
"dotenv": "^16.4.7",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.54.2",
"use-sync-external-store": "^1.6.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "2.4.1",
"@tsconfig/docusaurus": "^1.0.5",
"domutils": "^3.0.1",
"htmlparser2": "^8.0.1",
"typescript": "^4.7.4",
"wrangler": "^4.42.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.14"
}
}