-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (37 loc) · 1.48 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
34
35
36
37
38
39
{
"name": "11ty-starter",
"version": "1.0.0",
"description": "A starter template for 11ty",
"main": "index.js",
"scripts": {
"watch:bookshop-sass": "bookshop-sass -b component-library -o _sass/_bookshop.scss -w",
"watch:sass": "npx sass _sass:_site/assets/css --watch",
"watch:eleventy": "npx @11ty/eleventy --serve",
"bookshop-browser": "bookshop-browser -b ./component-library -p 6061",
"dev": "npm-run-all --parallel watch:bookshop-sass watch:sass watch:eleventy bookshop-browser",
"build:bookshop-sass": "bookshop-sass -b component-library -o _sass/_bookshop.scss",
"build:sass": "npx sass _sass:_site/assets/css",
"build:eleventy": "npx @11ty/eleventy",
"build": "npm-run-all --parallel build:bookshop-sass build:sass bookshop-live build:eleventy",
"bookshop-live": "npx bookshop-live -b ./component-library -o ./assets/js/bookshop-live.js",
"bookshop-init": "npx @bookshop/init --component"
},
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^1.0.0",
"@bookshop/browser": "^2.2.3",
"@bookshop/eleventy-engine": "^2.2.3",
"@bookshop/live": "^2.4.0",
"@bookshop/sass": "^2.4.0"
},
"dependencies": {
"@bookshop/cloudcannon-eleventy-bookshop": "^2.4.0",
"@bookshop/eleventy-bookshop": "^2.2.3",
"@quasibit/eleventy-plugin-sitemap": "^2.1.4",
"eleventy-plugin-metagen": "^1.5.2",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.49.4"
}
}