-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
33 lines (33 loc) · 1.23 KB
/
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
30
31
32
33
{
"name": "11ty-recipes",
"version": "1.0.0",
"description": "There's a ton of great Eleventy starter kits out there but they're pretty opinionated about their features and dependencies. 11ty.recipies helps you build an Eleventy site from scratch, showing you how to add individual features like a SASS pipeline or image sprite generation.",
"main": ".eleventy.js",
"scripts": {
"watch:sass": "sass --no-source-map --watch _src/sass:_site/css",
"build:sass": "sass --no-source-map _src/sass:_site/css",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peruvianidol/11ty-recipes.git"
},
"keywords": [],
"author": "Mike Aparicio <[email protected]> (http://mikeaparicio.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/peruvianidol/11ty-recipes/issues"
},
"homepage": "https://github.com/peruvianidol/11ty-recipes#readme",
"dependencies": {
"@11ty/eleventy": "^0.11.0"
},
"devDependencies": {
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.32.8"
}
}