Cataloguer/package.json

18 lines
655 B
JSON
Raw Normal View History

2023-02-17 20:22:36 +00:00
{
"name": "catalogue.bengoldsworthy.net",
"version": "1.0.0",
"description": "Ben Goldsworthy's media cataloguing site.",
"scripts": {
2023-10-05 18:27:13 +00:00
"build": "rm -rf ./public/ && snap run hugo --templateMetrics --templateMetricsHints",
2023-07-22 21:41:39 +00:00
"deploy": "rsync -rP ./public/ ovhvps:~/catalogue/content",
2024-01-18 22:06:13 +00:00
"add": "python ./scripts/add_item.py",
2024-01-23 18:57:22 +00:00
"process": "python ./scripts/process_logs.py",
2023-10-05 18:27:13 +00:00
"lint:json": "jsonlint ./**/*.json -s",
"lint:json:fix": "npm run lint:json -- -i",
2024-01-17 22:02:56 +00:00
"lint:py": "pylint --disable=broad-exception-raised --disable=logging-fstring-interpolation ./scripts/*.py"
2023-07-22 21:41:39 +00:00
},
"devDependencies": {
"jsonlint": "^1.6.3"
2023-02-17 20:22:36 +00:00
}
}