forked from google/docsy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 845 Bytes
/
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
{
"scripts": {
"_build": "npm run _hugo-dev",
"_hugo": "hugo --cleanDestinationDir --themesDir ../..",
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
"_serve": "npm run _hugo-dev -- serve",
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "npm run _hugo -- --minify",
"build": "npm run _build",
"prebuild:preview": "npm run submodule:get",
"prebuild:production": "npm run submodule:get",
"prebuild": "npm run submodule:get",
"preinstall": "npm run submodule:get",
"preserve": "npm run submodule:get",
"serve": "npm run _serve",
"submodule:get": "cd .. && npm run submodule:get",
"submodule:update": "cd .. && npm run submodule:update"
},
"devDependencies": {
"autoprefixer": "^9.5.0",
"postcss-cli": "^5.0.1"
}
}