forked from pingcap/website-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.42 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 4.42 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
{
"name": "website-docs",
"private": true,
"description": "The next generation of PingCAP Docs. Powered by Gatsby.",
"version": "0.1.0-beta.0",
"author": "Yue Yang <g1enyy0ung@gmail.com> (https://g1eny0ung.site)",
"dependencies": {
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@mdx-js/mdx": "^1.6.1",
"@mdx-js/react": "^1.6.1",
"@seagreenio/react-bulma": "^0.1.0-beta.2",
"algoliasearch": "^4.2.0",
"axios": "^0.21.1",
"copy-to-clipboard": "^3.3.1",
"flat": "^5.0.0",
"gatsby": "^2.22.9",
"gatsby-cli": "^2.12.34",
"gatsby-image": "^2.4.0",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-mdx": "^1.2.12",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-purgecss": "^5.0.0",
"gatsby-plugin-react-helmet": "^3.3.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-sass": "^2.3.1",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-remark-autolink-headers": "^2.3.1",
"gatsby-remark-prismjs": "^3.5.3",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.0",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"react-hubspot-form": "^1.3.7",
"react-intl": "^4.5.11",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"remark": "^12.0.0",
"remark-html": "^11.0.1"
},
"devDependencies": {
"@prantlf/railroad-diagrams": "^1.0.1",
"anafanafo": "^1.0.0",
"bulma": "^0.8.2",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.6",
"node-sass": "^4.14.1",
"pegjs": "^0.10.0",
"prettier": "2.0.5",
"replacestream": "^4.0.3",
"resolve-url-loader": "^3.1.1",
"rimraf": "^3.0.2",
"signale": "^1.4.0",
"to-readable-stream": "^2.1.0",
"unist-util-flatmap": "^1.0.0",
"yargs": "^15.3.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"start:0.0.0.0": "gatsby develop --host 0.0.0.0",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest --coverage --roots src",
"clean:docs:docs-tidb:en": "rimraf ./markdown-pages/contents/en/docs-tidb/**/*.md",
"clean:docs:docs-tidb:zh": "rimraf ./markdown-pages/contents/zh/docs-tidb/**/*.md",
"clean:docs:docs-tidb-operator:en": "rimraf ./markdown-pages/contents/en/docs-tidb-operator/**/*.md",
"clean:docs:docs-tidb-operator:zh": "rimraf ./markdown-pages/contents/zh/docs-tidb-operator/**/*.md",
"clean:docs:docs-dm:en": "rimraf ./markdown-pages/contents/en/docs-dm/**/*.md",
"clean:docs:docs-dm:zh": "rimraf ./markdown-pages/contents/zh/docs-dm/**/*.md",
"clean:docs:docs-dbaas:en": "rimraf ./markdown-pages/contents/en/docs-dbaas/**/*.md",
"clean:docs:docs-dev-guide:zh": "rimraf ./markdown-pages/contents/zh/docs-dev-guide/**/*.md",
"download:docs-tidb:en": "node markdown-pages/cli.js download docs",
"download:docs-tidb:en:all": "./scripts/download-docs-tidb-en.sh",
"download:docs-tidb:zh": "node markdown-pages/cli.js download docs-cn",
"download:docs-tidb:zh:all": "./scripts/download-docs-tidb-zh.sh",
"download:docs-tidb-operator": "node markdown-pages/cli.js download docs-tidb-operator",
"download:docs-tidb-operator:all": "./scripts/download-docs-tidb-operator.sh",
"download:docs-tidb-operator:en:all": "./scripts/download-docs-tidb-operator-en.sh",
"download:docs-tidb-operator:zh:all": "./scripts/download-docs-tidb-operator-zh.sh",
"download:docs-dm": "node markdown-pages/cli.js download docs-dm",
"download:docs-dm:all": "./scripts/download-docs-dm.sh",
"download:docs-dm:en:all": "./scripts/download-docs-dm-en.sh",
"download:docs-dm:zh:all": "./scripts/download-docs-dm-zh.sh",
"download:docs-dbaas": "node markdown-pages/cli.js download docs-dbaas",
"download:docs-dbaas:all": "./scripts/download-docs-dbaas.sh",
"download:docs-dev-guide": "node markdown-pages/cli.js download dev-guide",
"download:docs-dev-guide:zh:all": "./scripts/download-docs-dev-guide-zh.sh",
"sync": "node markdown-pages/cli.js sync"
},
"lint-staged": {
"*.js?(x)": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}