build(npm): remove unnecessary scripts

This commit is contained in:
Ben Goldsworthy 2025-02-23 01:26:44 +01:00
parent a74da74d43
commit 824e39486c
Signed by: Rumperuu
SSH key fingerprint: SHA256:v3uompaUiPqV2w1/AIRWBSQOxr2dntH9Xs/y8fDnUPU

View file

@ -4,10 +4,9 @@
"description": "A media cataloguing site, made with Hugo.",
"scripts": {
"precommit": "npm run lint-staged",
"update:theme": "hugo mod get -u code.bengoldsworthy.net/Rumperuu/Cataloguer@main",
"dev": "npm run update:theme && hugo server",
"build": "npm run update:theme && rm -rf ./public/ && hugo --environment production",
"build:dev": "npm run update:theme && rm -rf ./public_dev/ && hugo --environment staging",
"dev": "hugo server",
"build": "rm -rf ./public/ && hugo --environment production",
"build:dev": "rm -rf ./public_dev/ && hugo --environment staging",
"spellcheck": "cspell \"content/**/*.md\"",
"lint": "npm run lint:js; npm run lint:css; npm run lint:md; npm run lint:html; npm run lint:json",
"lint:fix": "npm run lint:js:fix; npm run lint:css:fix; npm run lint:md:fix; npm run lint:json:fix",