editions/package.json

23 lines
686 B
JSON

{
"name": "editions",
"version": "1.0.0",
"description": "",
"main": "eleventy.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:stylus": "stylus --compress ./src/styles/ --out ./dist/styles/",
"watch:stylus": "stylus --watch ./src/styles/ --out ./dist/styles/",
"build:11ty": "eleventy",
"watch:11ty": "eleventy --watch --serve --port=8081",
"build": "concurrently \"npm:build:*\"",
"dev": "concurrently \"npm:watch:*\"",
"debug": "DEBUG=Eleventy* yarn dev"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"concurrently": "^8.2.1",
"stylus": "^0.60.0"
}
}