-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
23 lines (23 loc) · 942 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
{
"name": "Yue",
"version": "1.0.0",
"scripts": {
"server": "hugo server --navigateToChanged --source exampleSite/ --themesDir ../..",
"server:shared": "hugo server --navigateToChanged --bind 0.0.0.0 --source exampleSite/ --themesDir ../..",
"server:production": "hugo server --navigateToChanged --environment production --source exampleSite/ --themesDir ../..",
"build": "hugo --source exampleSite/ --themesDir ../..",
"build:minify": "hugo --minify --source exampleSite/ --themesDir ../..",
"clean": "rm -r exampleSite/public/",
"clean:server": "npm run clean; npm run server",
"clean:server:shared": "npm run clean; npm run server:shared",
"clean:server:production": "npm run clean; npm run server:production",
"clean:build": "npm run clean; npm run build"
},
"hugo-bin": {
"buildTags": "extended",
"version": "0.136.0"
},
"devDependencies": {
"hugo-bin": "^0.133.2"
}
}