forked from yugabyte/yugabyte-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.59 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
{
"name": "docs",
"version": "1.3.0",
"description": "Yugabyte Docs",
"main": "public/index.html",
"scripts": {
"start": "run-p start-diagrams webpack-watch hugo-server",
"fast": "run-p webpack-watch hugo-server-fast",
"start-production": "run-p webpack-watch hugo-server-production",
"start-static": "run-p webpack-watch hugo-server-static",
"build": "rm -rf public && npm ci && run-p start-diagrams hugo-base-build",
"hugo-base-build": "run-s webpack-build hugo-build stop-diagrams",
"debug-build": "rm -rf public && npm ci && run-p start-diagrams hugo-base-debug-build",
"hugo-base-debug-build": "run-s webpack-build hugo-build-with-metrics stop-diagrams",
"hugo-build": "hugo -b https://docs.yugabyte.com",
"hugo-build-with-metrics": "hugo --templateMetrics --templateMetricsHints -b https://docs.yugabyte.com",
"hugo-server": "hugo server --bind 0.0.0.0 --baseURL ${YB_HUGO_BASE:-localhost}",
"hugo-server-fast": "hugo server --bind 0.0.0.0 --baseURL ${YB_HUGO_BASE:-localhost} --environment fast",
"hugo-server-production": "hugo server --bind 0.0.0.0 --baseURL ${YB_HUGO_BASE:-localhost} --environment production",
"hugo-server-static": "hugo server --renderStaticToDisk --bind 0.0.0.0 --baseURL ${YB_HUGO_BASE:-localhost}",
"start-diagrams": "npm install --no-audit --no-fund && java -jar node_modules/yb-rrdiagram/rrdiagram*.jar --server",
"stop-diagrams": "curl --silent http://localhost:1314/shutdown",
"webpack-build": "webpack --mode=production",
"webpack-watch": "webpack --mode=production -w"
},
"author": "Yugabyte, Inc.",
"license": "Apache License 2.0",
"homepage": "https://github.com/yugabyte/yugabyte-db/docs#readme",
"dependencies": {
"@babel/core": "7.23.2",
"@babel/eslint-parser": "7.22.15",
"@babel/plugin-proposal-decorators": "7.23.2",
"@babel/preset-env": "7.23.2",
"algoliasearch": "4.20.0",
"babel-loader": "9.1.3",
"clipboard": "2.0.11",
"detect-external-link": "2.0.1",
"eslint": "8.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-xo-space": "0.34.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-webpack-plugin": "4.0.1",
"hugo-algolia": "1.2.14",
"node-sass": "9.0.0",
"npm-run-all": "4.1.5",
"react-dev-tools": "0.0.1",
"react-dev-utils": "12.0.1",
"run-p": "0.0.0",
"webpack": "5.89.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"yb-rrdiagram": "0.0.7"
},
"devDependencies": {
"autoprefixer": "10.4.16",
"postcss": "8.4.31",
"postcss-cli": "10.1.0"
}
}