-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.54 KB
/
package.json
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
{
"name": "documentation",
"version": "1.0.0",
"private": true,
"description": "documentation",
"author": "burnpiro",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "npm run bundle-openapi-watch & gatsby develop",
"start": "npm run develop",
"build": "npm run bundle-openapi && gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"bundle-openapi-watch": "node openapi-bundler.js watch",
"bundle-openapi": "node openapi-bundler.js",
"set-domain": "node set-domain.js"
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.59",
"@mui/material": "^5.2.2",
"@redocly/openapi-cli": "^1.0.0-beta.69",
"@redocly/react-dropdown-aria": "^2.0.12",
"@types/dompurify": "^2.3.1",
"chokidar": "^3.5.2",
"decko": "^1.2.0",
"dompurify": "^2.3.3",
"gatsby": "^4.3.0",
"gatsby-plugin-google-gtag": "^4.3.0",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-mdx": "^3.3.0",
"gatsby-plugin-react-helmet": "^5.3.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-plugin-sitemap": "^5.3.0",
"gatsby-remark-autolink-headers": "^5.4.0",
"gatsby-remark-copy-linked-files": "^5.3.0",
"gatsby-remark-images": "^6.3.0",
"gatsby-remark-katex": "^6.3.0",
"gatsby-remark-prismjs": "^6.4.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-remark": "^5.7.0",
"gatsby-transformer-sharp": "^4.3.0",
"js-yaml": "^4.1.0",
"jsdom": "^19.0.0",
"json-pointer": "^0.6.1",
"katex": "^0.13.24",
"lodash.kebabcase": "^4.1.1",
"marked": "^4.0.6",
"openapi-sampler": "^1.2.0",
"openapi-types": "^10.0.0",
"prettier": "^2.5.1",
"prismjs": "^1.25.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-json-view": "^1.21.3",
"semver": "^7.3.5",
"slugify": "^1.6.4",
"unist-util-visit": "^2.0.3",
"url": "^0.11.0",
"url-template": "^2.0.8"
},
"docfiles": [
{
"path": "./openapi/v0.1.yaml",
"out": "./content/openapi/v0.1.yaml",
"name": "V0.1"
},
{
"path": "./openapi/v0.2.yaml",
"out": "./content/openapi/v0.2.yaml",
"name": "V0.2"
},
{
"path": "./openapi/v0.3.yaml",
"out": "./content/openapi/v0.3.yaml",
"name": "V0.3"
}
],
"engines": {
"node": "16"
}
}