poetry-for-programmers/package.json

27 lines
835 B
JSON

{
"name": "workshop-poetry-for-programmers-2023",
"version": "1.0.0",
"scripts": {
"start": "npm run build -- --serve",
"build": "npx @11ty/eleventy --input=story --output=_site",
"clean": "rimraf _site",
"test": "ava",
"deploy": "npm run clean && npm run build && npm run __deploy-upload",
"__deploy-upload": "rsync --recursive --update --compress --progress --delete _site/. nilsnh@box.nilsnh.no:/home/user-data/www/poetry-for-programmers.workshop.nilsnh.no"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nilsnh/poetry-for-programmers.git"
},
"engines": {
"node": ">=18.x"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"ava": "^5.2.0",
"prettier": "^2.8.4",
"rimraf": "^4.3.0"
}
}