forked from 11ty/11ty-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.52 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
{
"name": "@11ty/website",
"version": "1.0.2",
"description": "The website of 11ty.dev",
"main": "_site/index.html",
"engines": {
"node": ">=12"
},
"scripts": {
"check-links": "npx check-html-links _site",
"build": "npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve --port=8091",
"netlifystart": "npx netlify dev",
"build-production": "npm run get-new-data && NODE_ENV=production npx @11ty/eleventy",
"get-new-data": "rm -rf ./src/_data/builtwith/ && npx degit github:11ty/11ty-community/built-with-eleventy src/_data/builtwith/",
"get-new-supporters": "eleventy && node node-supporters",
"get-new-avatars": "node node-avatars-twitter",
"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": "2.0.0-canary.16",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@netlify/functions": "^1.2.0",
"clean-css": "^5.3.1",
"comma-number": "^2.1.0",
"cross-spawn": "^7.0.3",
"dotenv": "^16.0.1",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"html-minifier": "4.0.0",
"human-readable-numbers": "0.9.5",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.4",
"markdown-it-table-of-contents": "^0.6.0",
"netlify-cli": "^10.17.2",
"node-fetch": "^2.6.5",
"prettier": "^2.7.1",
"semver": "^7.3.7",
"short-hash": "^1.0.0",
"slugify": "^1.6.5",
"sorted-object": "^2.0.1",
"terser": "^5.14.2",
"twitter-avatar-url": "^2.2.0"
},
"dependencies": {
"@11ty/is-land": "^2.0.0",
"@11ty/logo": "^2.0.6",
"@zachleat/details-utils": "^2.0.2",
"@zachleat/filter-container": "^3.0.4",
"@zachleat/seven-minute-tabs": "^2.0.0",
"lite-youtube-embed": "^0.2.0",
"speedlify-score": "^2.0.2"
}
}