-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.04 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": "eleventy-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"fetch-theme-color": "node utils/fetch-theme-color.js",
"watch:sass": "sass --watch src/sass:_site/css",
"build:sass": "sass src/sass:_site/css",
"build:bookshop-sass": "bookshop-sass -b component-library -o _site/css/bookshop.css",
"watch:bookshop-sass": "bookshop-sass -b component-library -o _site/css/bookshop.css -w",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"start": "npm-run-all fetch-theme-color build:sass --parallel watch:*",
"build": "npm-run-all build:*",
"new": "npx @bookshop/init --component"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@bookshop/browser": "3.8.1",
"@bookshop/eleventy-engine": "3.8.1",
"@bookshop/generate": "3.8.1",
"@bookshop/sass": "^3.8.1",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"@bookshop/eleventy-bookshop": "3.8.1",
"sass": "^1.69.2"
}
}