-
-
Notifications
You must be signed in to change notification settings - Fork 682
/
package.json
89 lines (89 loc) · 2.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@11ty/website",
"version": "1.0.2",
"description": "The website of 11ty.dev",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"check-links": "npx check-html-links _site",
"build": "npx @11ty/eleventy --quiet && npm run create-search-index",
"build-production": "npm run get-new-data && NODE_ENV=production npx @11ty/eleventy && npm run create-search-index",
"start": "npx @11ty/eleventy --serve --quiet --port=8091 --incremental",
"start-production": "NODE_ENV=production npx @11ty/eleventy --serve --quiet --port=8091",
"create-search-index": "npx pagefind --site \"_site\" --glob \"{docs,blog}/**/*.html\"",
"get-new-data": "rm -rf ./src/_data/builtwith/ && npx degit github:11ty/11ty-community/built-with-eleventy src/_data/builtwith/",
"format": "prettier --write '**/*.{js,css,html,md}'"
},
"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",
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-activity-feed": "^1.0.9",
"@11ty/eleventy-fetch": "^5.0.0-beta.4",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@11ty/webc": "0.11.3",
"@tweetback/canonical": "^2.0.29",
"clean-css": "^5.3.2",
"comma-number": "^2.1.0",
"degit": "^2.8.4",
"dotenv": "^16.3.1",
"entities": "^4.4.0",
"esm-import-transformer": "^3.0.2",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.0",
"human-readable-numbers": "0.9.5",
"lodash": "^4.17.21",
"luxon": "^3.4.0",
"markdown-it": "^13.0.1",
"markdown-it-table-of-contents": "^0.6.0",
"memoize": "^10.0.0",
"node-fetch": "^2.6.8",
"node-retrieve-globals": "^2.0.6",
"pagefind": "^1.1.1",
"prettier": "^2.8.4",
"semver": "^7.5.4",
"short-hash": "^1.0.0",
"slugify": "^1.6.5",
"terser": "^5.19.2"
},
"dependencies": {
"@11ty/is-land": "^4.0.0",
"@11ty/logo": "^2.0.6",
"@zachleat/details-utils": "^2.0.2",
"@zachleat/filter-container": "^3.0.4",
"@zachleat/flex-luthor": "^4.0.2",
"@zachleat/heading-anchors": "^1.0.1",
"@zachleat/seven-minute-tabs": "^3.0.2",
"artificial-chart": "^2.0.3",
"lite-youtube-embed": "^0.2.0",
"speedlify-score": "^4.0.3"
}
}