forked from etcd-io/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.07 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
{
"config": {
"DEV_ARGS": "--cleanDestinationDir -e development --buildDrafts --buildFuture --buildExpired"
},
"scripts": {
"build-and-serve": "npm run build && sleep 1 && npm run serve",
"build:preview": "hugo --baseURL $DEPLOY_PRIME_URL -e development --minify",
"build:production": "hugo --cleanDestinationDir --minify",
"build": "hugo $npm_package_config_DEV_ARGS",
"check-env": "node -e 'console.log(process.env)' | grep npm",
"get-submodules": "git submodule update --init --recursive --depth 1",
"postbuild:preview": "make ci-check-links",
"prebuild:preview": "npm run get-submodules && ./check-hugo.sh",
"prebuild:production": "npm run get-submodules && ./check-hugo.sh",
"prebuild": "./check-hugo.sh",
"preserve": "./check-hugo.sh",
"serve": "netlify dev -c \"hugo serve --minify -DFE -w\""
},
"devDependencies": {
"anchorjs": "^0.2.4",
"autoprefixer": "^10.2.5",
"bulma": "^0.7.2",
"bulma-dashboard": "^0.1.34",
"netlify-cli": "^3.29.17",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1"
}
}