forked from grpc/grpc.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.89 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
{
"spelling": "cSpell:ignore htmltest postbuild prebuild precheck preinstall -",
"scripts": {
"_build": "hugo --cleanDestinationDir -e dev -DFE",
"_check-links": "make check-links",
"_get:no": "echo SKIPPING get operation",
"_get:submodule": "set -x && git submodule update --init ${DEPTH:- --depth 1}",
"_prebuild": "npm run get:submodule",
"_prepare:docsy": "cd themes/docsy && npm install",
"_serve:hugo": "hugo serve -DFE --minify",
"_serve": "netlify dev -c \"npm run _serve:hugo\"",
"build:preview": "set -x && npm run _build -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "hugo --cleanDestinationDir --minify",
"build": "npm run _build",
"check-links:all": "HTMLTEST_ARGS= npm run _check-links",
"check-links": "npm run _check-links",
"get:submodule": "npm run _get:${GET:-submodule}",
"postbuild:preview": "npm run _check-links",
"postbuild:production": "npm run _check-links",
"prebuild:preview": "npm run _prebuild",
"prebuild:production": "npm run _prebuild",
"prebuild": "npm run _prebuild",
"precheck-links:all": "npm run build",
"precheck-links": "npm run build",
"preinstall": "npm run get:submodule",
"prepare": "npm run get:submodule && npm run _prepare:docsy",
"preserve:hugo": "npm run _prebuild",
"preserve": "npm run _prebuild",
"serve:hugo": "npm run _serve:hugo",
"serve": "npm run _serve",
"test": "npm run check-links",
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
"update:pkg:hugo+": "npm install --save-dev autoprefixer@latest postcss@latest postcss-cli@latest",
"update:submodule": "set -x && git submodule update --remote ${DEPTH:- --depth 1}"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"hugo-extended": "0.99.1",
"netlify-cli": "^9.12.3",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0"
}
}