-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpackage.json
54 lines (54 loc) · 2.05 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
{
"name": "docs",
"version": "1.3.0",
"description": "Yugabyte Docs",
"main": "public/index.html",
"scripts": {
"start": "run-p webpack-watch hugo-server",
"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-s webpack-build hugo-build",
"debug-build": "rm -rf public && npm ci && run-s webpack-build hugo-build-with-metrics",
"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-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}",
"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": "6.23.0",
"babel-core": "6.26.3",
"babel-eslint": "10.1.0",
"babel-loader": "7.1.5",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"clipboard": "2.0.8",
"eslint": "4.19.1",
"eslint-config-airbnb": "17.1.1",
"eslint-config-xo-space": "0.18.0",
"eslint-loader": "2.2.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"hugo-algolia": "1.2.14",
"node-sass": "6.0.1",
"npm-run-all": "4.1.5",
"react-dev-tools": "0.0.1",
"react-dev-utils": "11.0.4",
"run-p": "0.0.0",
"webpack": "4.44.2",
"webpack-cli": "4.7.2",
"webpack-dev-server": "3.11.2"
},
"devDependencies": {
"autoprefixer": "10.4.4",
"postcss": "8.4.12",
"postcss-cli": "9.1.0"
}
}