mirror of
https://github.com/TheThomaas/my-online-cookbook.git
synced 2026-01-09 19:41:38 +00:00
30 lines
875 B
JSON
30 lines
875 B
JSON
{
|
|
"name": "my-online-cookbook",
|
|
"version": "0.1.0",
|
|
"description": "A starter kit to make your own online recipe cookbook",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev:css": "sass src/scss/main.scss:src/_includes/css/main.css --watch --style=compressed",
|
|
"dev:11ty": "eleventy --serve",
|
|
"dev": "npm-run-all --parallel dev:css dev:11ty",
|
|
"prod:css": "sass src/scss/main.scss:src/_includes/css/main.css --style=compressed",
|
|
"prod:11ty": "eleventy",
|
|
"build": "npm-run-all prod:css prod:11ty"
|
|
},
|
|
"author": "Maël Brunet",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^0.12.1",
|
|
"@11ty/eleventy-img": "^0.8.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"sass": "^1.32.12"
|
|
},
|
|
"dependencies": {
|
|
"alpinejs": "^2.8.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/maeligg/my-online-cookbook"
|
|
}
|
|
}
|