forked from 11ty/11ty-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.16 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": "@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-avatars && node node-screenshots && ./deploy.sh",
"build": "eleventy",
"build-production": "node node-avatars.js && ELEVENTY_PRODUCTION=true eleventy",
"postbuild-production": "npm run links-internal"
},
"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-beta.3",
"@11ty/eleventy-navigation": "0.1.5",
"@11ty/eleventy-plugin-rss": "1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "3.0.1",
"avatar-local-cache": "2.0.6",
"clean-css": "4.2.3",
"comma-number": "2.0.1",
"dotenv": "8.2.0",
"flat-cache": "2.0.1",
"fs-extra": "9.0.0",
"html-minifier": "4.0.0",
"human-readable-numbers": "0.9.5",
"hyperlink": "4.4.3",
"lodash.defer": "4.1.0",
"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.0",
"performance-leaderboard": "2.0.5",
"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"
},
"dependencies": {
"@11ty/logo": "2.0.4",
"instant.page": "3.0.0",
"prismjs": "1.19.0"
}
}