-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 874 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"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": "^2.0.1",
"@11ty/eleventy-img": "^3.1.8",
"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"
}
}