my-online-cookbook/package.json
TheThomaas 8bae281d6c Squashed commit of the following:
commit 446595ceff8375826c246dc5698dbbb3bff995bc
Author: TheThomaas <thethomaas@protonmail.ch>
Date:   Mon Apr 21 17:30:14 2025 +0200

    Add 11ty Navigation
2025-04-21 17:38:57 +02:00

32 lines
913 B
JSON

{
"name": "my-online-cookbook",
"version": "0.1.0",
"description": "A starter kit to make your own online recipe cookbook",
"main": "index.js",
"type": "module",
"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:*",
"prod:css": "sass src/scss/main.scss:src/_includes/css/main.css --style=compressed",
"prod:11ty": "eleventy",
"build": "npm-run-all prod:*"
},
"author": "Maël Brunet",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^6.0.1",
"@11ty/eleventy-navigation": "^1.0.4",
"npm-run-all": "^4.1.5",
"sass": "^1.86.3"
},
"dependencies": {
"alpinejs": "^2.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maeligg/my-online-cookbook"
}
}