18 lines
556 B
JSON
18 lines
556 B
JSON
{
|
|
"name": "hugo-wordpress-blog",
|
|
"version": "1.0.0",
|
|
"description": "Hugo static site with WordPress content",
|
|
"scripts": {
|
|
"fetch-data": "node scripts/fetch-wordpress.js",
|
|
"generate-content": "node scripts/generate-content.js",
|
|
"prebuild": "npm run fetch-data && npm run generate-content",
|
|
"build": "hugo --minify",
|
|
"dev": "npm run fetch-data && npm run generate-content && hugo server -D",
|
|
"clean": "rm -rf data/wordpress content/posts public"
|
|
},
|
|
"dependencies": {
|
|
"he": "^1.2.0",
|
|
"node-fetch": "^3.3.2"
|
|
}
|
|
}
|