forked from stellar/stellar-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 4.33 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 4.33 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
{
"name": "stellar-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build --locale en",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"api:clean": "docusaurus clean-api-docs all",
"api:bundle": "yarn bundle-horizon && yarn bundle-anchor-platform && yarn bundle-stellar-disbursement-platform",
"bundle-horizon": "redocly bundle horizon --output openapi/horizon/bundled.yml",
"bundle-anchor-platform": "redocly bundle ap-platform --output openapi/anchor-platform/bundled-platform.yaml && redocly bundle ap-callbacks --output openapi/anchor-platform/bundled-callbacks.yaml",
"bundle-stellar-disbursement-platform": "redocly bundle stellar-disbursement-platform --output openapi/stellar-disbursement-platform/bundled.yaml",
"api:gen": "docusaurus gen-api-docs all && rm docs/data/apis/horizon/api-reference/*.info.mdx && rm docs/platforms/anchor-platform/api-reference/{callbacks,platform/transactions}/*.info.mdx && rm docs/platforms/stellar-disbursement-platform/api-reference/*.info.mdx",
"api": "yarn api:clean && yarn api:bundle && yarn api:gen",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"format:mdx": "prettier --config .prettierrc.js --write \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\"",
"ci-format:mdx": "prettier --config .prettierrc.js --write --log-level silent \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\"",
"check:mdx": "prettier --config .prettierrc.js -c \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\"",
"ci:mdx": "prettier --config .prettierrc.js \"{docs,src/pages,meeting-notes}/**/*.{md,mdx}\" -l --no-editorconfig",
"diff:mdx": "yarn ci-format:mdx && git diff -- . ':(exclude)package-lock.json' ':(exclude)package.json' ':(exclude)yarn.lock' | awk \"/diff --git/ {found=1} found {print}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky",
"postinstall": "patch-package",
"rpcspec:build": "node openrpc/scripts/build.mjs",
"rpcspec:validate": "node openrpc/scripts/build.mjs && node openrpc/scripts/validate.mjs",
"stellar-cli:build": "node scripts/stellar_cli_plugins.mjs && node scripts/stellar_cli.mjs",
"stellar-cli:fix-links": "./scripts/fix_cli_links.sh",
"crowdin": "crowdin",
"crowdin:fix": "node scripts/copyIgnoredFiles.mjs && ./scripts/fix_translations.sh",
"crowdin:sync": "docusaurus write-translations && crowdin upload --no-progress --delete-obsolete && crowdin download --no-progress"
},
"dependencies": {
"@crowdin/cli": "^4.12.0",
"@docusaurus/core": "3.9.2",
"@docusaurus/faster": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/remark-plugin-npm2yarn": "3.9.2",
"@docusaurus/theme-mermaid": "3.9.2",
"@mdx-js/react": "3.1.1",
"@open-rpc/meta-schema": "^1.14.9",
"@open-rpc/schema-utils-js": "^1.16.2",
"@stellar/open-rpc-docs-react": "^0.2.1",
"ajv": "^8.17.1",
"clsx": "^2.1.1",
"docusaurus-plugin-openapi-docs": "4.5.1",
"docusaurus-plugin-sass": "^0.2.6",
"docusaurus-plugin-sentry": "^2.1.0",
"docusaurus-theme-openapi-docs": "4.5.1",
"js-yaml": "^4.1.1",
"patch-package": "^8.0.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"sass": "^1.96.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/eslint-plugin": "3.9.2",
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.2",
"@redocly/cli": "2.12.6",
"@stellar/prettier-config": "^1.2.0",
"eslint": "9.39.2",
"glob":"^13.0.0",
"husky": "^9.1.7",
"prettier": "3.7.4",
"typescript": "5.9.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}