forked from 11ty/11ty-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.35 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
{
"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",
"deploy": "./deploy.sh",
"build": "npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve --incremental",
"build-production": "node node-avatars-opencollective && NODE_ENV=production npx @11ty/eleventy",
"get-new-supporters": "eleventy && node node-supporters",
"get-new-avatars": "node node-avatars-opencollective && 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.3",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-img": "^1.1.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2",
"@netlify/functions": "^0.7.2",
"chrome-aws-lambda": "^9.1.0",
"clean-css": "^5.2.2",
"comma-number": "2.1.0",
"cross-spawn": "^7.0.3",
"dotenv": "10.0.0",
"fast-glob": "^3.2.9",
"fs-extra": "10.0.0",
"html-minifier": "4.0.0",
"human-readable-numbers": "0.9.5",
"lodash": "^4.17.21",
"luxon": "2.3.0",
"markdown-it": "12.3.2",
"markdown-it-anchor": "5.2.5",
"markdown-it-table-of-contents": "0.5.2",
"node-fetch": "^2.6.5",
"prettier": "^2.5.1",
"puppeteer-core": "^9.0.0",
"semver": "7.3.5",
"short-hash": "^1.0.0",
"slugify": "1.6.5",
"sorted-object": "2.0.1",
"tap-spot": "1.1.1",
"terser": "^4.8.0",
"twitter-avatar-url": "^2.1.0"
},
"dependencies": {
"@11ty/logo": "^2.0.5",
"@zachleat/filter-container": "^2.0.3",
"prismjs": "1.26.0",
"speedlify-score": "^2.0.2"
}
}