forked from 11ty/11ty-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.37 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
71
72
73
74
{
"name": "@11ty/website",
"version": "1.0.2",
"description": "The website of 11ty.dev",
"main": "_site/index.html",
"engines": {
"node": ">=10"
},
"scripts": {
"assets": "cp node_modules/@11ty/logo/logo.png .",
"links-external": "hyperlink -r --root _site --canonicalroot https://11ty.dev/ --skip '/.netlify/functions' _site/*.html | tap-spot",
"links-internal": "hyperlink -ri --root _site --canonicalroot https://11ty.dev/ --skip '/.netlify/functions' _site/*.html | tap-spot",
"deploy": "eleventy && node node-screenshots && ./deploy.sh",
"build": "eleventy",
"start": "eleventy --serve",
"build-production": "node node-avatars-opencollective && ELEVENTY_PRODUCTION=true eleventy",
"get-new-screenshots": "node node-screenshots",
"get-new-supporters": "eleventy && node node-supporters",
"get-new-avatars": "node node-avatars-opencollective && node node-avatars-twitter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/11ty-website.git"
},
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/11ty-website/issues"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"homepage": "https://github.com/11ty/11ty-website#readme",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-cache-assets": "^2.0.2",
"@11ty/eleventy-img": "^0.2.5",
"@11ty/eleventy-navigation": "0.1.5",
"@11ty/eleventy-plugin-rss": "1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "3.0.1",
"clean-css": "4.2.3",
"comma-number": "2.0.1",
"dotenv": "8.2.0",
"fast-glob": "^3.2.4",
"fs-extra": "9.0.0",
"html-minifier": "4.0.0",
"human-readable-numbers": "0.9.5",
"hyperlink": "4.4.3",
"luxon": "1.22.2",
"markdown-it": "8.4.2",
"markdown-it-anchor": "5.2.5",
"markdown-it-table-of-contents": "0.4.4",
"node-fetch": "2.6.1",
"puppeteer": "2.1.1",
"semver": "7.1.3",
"sharp": "0.25.2",
"slugify": "1.4.0",
"sorted-object": "2.0.1",
"tap-spot": "1.1.1",
"terser": "4.6.7",
"twitter-avatar-url": "1.0.2"
},
"dependencies": {
"@11ty/logo": "2.0.4",
"instant.page": "3.0.0",
"prismjs": "1.21.0",
"speedlify-score": "^2.0.1"
}
}