-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@photogabble/website",
"version": "2.0.0",
"description": "Source code for photogabble.co.uk",
"main": "index.js",
"scripts": {
"serve:dev": "rm -rf _site && cross-env ELEVENTY_ENV=development eleventy --serve",
"serve:prod": "rm -rf _site && cross-env ELEVENTY_ENV=production eleventy --serve",
"build": "cross-env ELEVENTY_ENV=production eleventy",
"build:dev": "cross-env ELEVENTY_ENV=development eleventy",
"og-images": "node ./bin/create-og-images.js",
"make:bookmark": "node ./bin/add-bookmark.js",
"make:week-in-review": "node ./bin/add-week-in-review.js"
},
"bin": {
"add-bookmark": "./bin/add-bookmark.js",
"add-week-in-review": "./bin/add-week-in-review.js",
"gen-og-images": "./bin/create-og-images.js"
},
"keywords": [
"PhotoGabble",
"DigitalGarden",
"Blog",
"11ty"
],
"author": "Simon Dann",
"license": "CC BY-NC-SA 4.0",
"devDependencies": {
"@11ty/eleventy": "^2.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@photogabble/eleventy-plugin-blogtimes": "^1.0.0",
"@photogabble/eleventy-plugin-font-subsetting": "^1.0.0",
"@photogabble/eleventy-plugin-interlinker": "git+ssh://[email protected]/photogabble/eleventy-plugin-interlinker.git#v1.1.0",
"@photogabble/eleventy-plugin-tag-normaliser": "^1.0.0",
"@photogabble/eleventy-plugin-word-stats": "^1.0.0",
"@rknightuk/eleventy-plugin-post-graph": "^1.0.4",
"autoprefixer": "^10.4.8",
"chalk": "^4.1.1",
"characterset": "^2.0.0",
"cross-env": "^7.0.3",
"eleventy-plugin-postcss": "^1.0.4",
"flat-cache": "^3.0.4",
"html-minifier": "^4.0.0",
"luxon": "^3.0.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"markdown-it-footnote": "^3.0.3",
"markdown-it-hashtag": "^0.4.0",
"netlify-plugin-cache": "^1.0.3",
"node-fetch": "^2.6.7",
"normalize.css": "^8.0.1",
"postcss": "^8.4.16",
"postcss-import": "^15.0.0",
"postcss-minify": "^1.1.0",
"puppeteer": "^17.1.3"
},
"dependencies": {
"@11ty/eleventy-img": "^3.1.8",
"@inquirer/editor": "^2.1.4",
"cheerio": "^1.0.0-rc.12",
"colorthief": "^2.4.0",
"enquirer": "^2.3.6",
"js-yaml": "^4.1.0",
"outdent": "^0.8.0",
"simple-git": "^3.20.0",
"yargs": "^17.7.2"
}
}