forked from cowprotocol/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.68 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.68 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
{
"name": "cow-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"git:clone:cowsdk": "cd external && rm -rf cow-sdk && git clone --depth=1 --branch=main https://github.com/cowprotocol/cow-sdk cow-sdk && rm -rf cow-sdk/.git",
"git:clone:appdata": "cd external && rm -rf app-data && git clone --depth=1 --branch=main https://github.com/cowprotocol/app-data app-data && rm -rf app-data/.git",
"build:external:cowsdk": "yarn git:clone:cowsdk && cd external/cow-sdk && yarn install --frozen --ignore-scripts && yarn add openapi-typescript-codegen@0.29.0 --dev && yarn codegen",
"build:external:appdata": "yarn git:clone:appdata && cd external/app-data && yarn install --frozen --ignore-scripts && yarn compile",
"build:external": "yarn build:external:cowsdk && yarn build:external:appdata",
"build": "yarn build:external && docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"fmt": "prettier --write \"**/*.md\""
},
"dependencies": {
"@docusaurus/core": "^3.8.0",
"@docusaurus/plugin-google-gtag": "^3.8.0",
"@docusaurus/plugin-ideal-image": "^3.8.0",
"@docusaurus/preset-classic": "^3.8.0",
"@docusaurus/remark-plugin-npm2yarn": "^3.8.0",
"@docusaurus/theme-live-codeblock": "^3.8.0",
"@docusaurus/theme-mermaid": "^3.8.0",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.1.1",
"docusaurus-json-schema-plugin": "^1.14.0",
"hast-util-is-element": "1.1.0",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-katex": "7.0.1",
"remark-math": "6",
"swagger-ui-react": "5.26.2"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.8.0",
"@docusaurus/tsconfig": "3.8.0",
"@docusaurus/types": "3.8.0",
"@types/react": "^18.0.0",
"docusaurus-plugin-typedoc": "^0.21.0",
"dotenv": "^16.3.1",
"prettier": "^3.0.3",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.0",
"typescript": "~5.2.2"
},
"resolutions": {
"types-ramda": "0.29.4"
},
"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"
},
"scarfSettings": {
"_comment": "https://github.com/swagger-api/swagger-ui/releases/tag/v5.18.0",
"enabled": false
}
}