-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.31 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
{
"name": "course-seo-intro",
"version": "1.0.0",
"description": "Online course - seo and hugo implementation",
"main": "index.js",
"scripts": {
"dev": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender --gc",
"dev:preview": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender --gc --buildDrafts --buildFuture",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify --cleanDestinationDir",
"renderToDisk:dev": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender --renderToDisk --cleanDestinationDir",
"renderToDisk:preview": "exec-bin node_modules/.bin/hugo/hugo server --renderToDisk --cleanDestinationDir --disableFastRender --buildDrafts --buildFuture ",
"renderToDisk:production": "exec-bin node_modules/.bin/hugo/hugo server --renderToDisk --cleanDestinationDir --disableFastRender --gc --minify --environment production",
"npm-check": "npx npm-check -u",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo"
},
"dependencies": {
"exec-bin": "^1.0.0",
"hugo-installer": "^3.1"
},
"otherDependencies": {
"hugo": "0.101.0"
},
"repository": {
"type": "git",
"url": "github.com/future-wd/course-hugo-seo"
},
"author": "Sean Emerson",
"license": "ISC"
}