-
Notifications
You must be signed in to change notification settings - Fork 296
/
package.json
26 lines (26 loc) · 1.04 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
{
"scripts": {
"_check-links": "make check-links",
"build-and-serve": "npm run build && npm run serve",
"build:preview": "hugo --cleanDestinationDir -e dev -DFE --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "hugo --cleanDestinationDir --minify",
"build": "hugo --cleanDestinationDir -e dev -DFE",
"check-links:all": "HTMLTEST_ARGS= npm run _check-links",
"check-links": "npm run _check-links",
"postbuild:preview": "npm run _check-links",
"precheck-links:all": "npm run build",
"precheck-links": "npm run build",
"preinstall": "npm run submodule:get",
"serve": "netlify dev -c \"hugo serve --minify -DFE -w\"",
"submodule:get": "git submodule update --init --recursive --depth 1",
"submodule:update": "git submodule update --remote --recursive --depth 1"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"docsy": "github:google/docsy#semver:0.11.0",
"hugo-extended": "0.138.0",
"netlify-cli": "^17.35.0",
"postcss": "^8.4.45",
"postcss-cli": "^11.0.0"
}
}