-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
122 lines (122 loc) · 3.68 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "aaron-gustafson.com",
"version": "2.0.0",
"description": "Aaron Gustafson’s website.",
"main": ".eleventy.js",
"scripts": {
"start": "gulp && concurrently 'gulp watch' 'npx eleventy --serve --quiet --incremental --ignore-initial'",
"serve": "cd dist && npx http-server -p 8888 -a 127.0.0.1",
"clean": "rm -Rf ./dist/* && rm -Rf ./dist/.*",
"debug": "DEBUG=Eleventy* npx eleventy --dryrun",
"prebuild": "gulp prebuild",
"build": "NODE_ENV=production npx eleventy --quiet",
"postbuild": "gulp postbuild && webmention dist/feeds/all.xml --limit 5 --send",
"start-netlify": "NODE_ENV=production netlify dev && netlify functions:serve",
"post": "hygen post with-prompt",
"link": "hygen link with-prompt",
"event": "hygen event with-prompt",
"talk": "hygen talk with-prompt",
"article": "hygen article with-prompt",
"book": "hygen book with-prompt",
"podcast": "hygen podcast with-prompt",
"press": "hygen press with-prompt",
"citation": "hygen citation with-prompt",
"404s": "node ./_tasks/scanner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aarongustafson/aaron-gustafson.com.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aarongustafson/aaron-gustafson.com/issues"
},
"homepage": "https://aaron-gustafson.com",
"dependencyComments": {
"gulp-imagemin": "gulp-imagemin 3.x requires ESM and will require major work to overhaul"
},
"dependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"@jlengstorf/get-share-image": "^0.8.0",
"@manustays/eleventy-plugin-codepen-iframe": "^2.0.1",
"@octokit/rest": "^19.0.7",
"@remy/webmention": "^1.4.5",
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
"@types/markdown-it": "^12.2.3",
"ansi-regex": ">=6.0.1",
"ansi2html": "^0.0.1",
"caniuse-lite": "^1.0.30001642",
"concurrently": "^7.6.0",
"css-what": "^6.1.0",
"dotenv": "^16.0.2",
"eleventy-plugin-embed-everything": "^1.14.1",
"eleventy-plugin-images-responsiver": "^2.2.0",
"eleventy-plugin-reading-time": "0.0.1",
"eleventy-plugin-seo": "aarongustafson/eleventy-plugin-seo#develop",
"eleventy-plugin-svg-contents": "^0.7.0",
"faunadb": "^4.6.0",
"front-matter": "^4.0.2",
"glob-parent": "~> 6.0.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "2.3.0",
"gulp-concat": "^2.6.1",
"gulp-filter": "^7.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-ignore": "^3.0.0",
"gulp-newer": "^1.4.0",
"gulp-pretty-data": "^0.1.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-svgo": "^2.2.1",
"gulp-uglify": "^3.0.2",
"imagetracerjs": "^1.2.6",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"luxon": "^3.2.1",
"markdown-it-anchor": "^8.6.4",
"markdown-it-attrs": "^4.1.4",
"markdown-it-footnote": "^3.0.3",
"merge-stream": "^2.0.0",
"netlify-lambda": "^2.0.15",
"netlify-plugin-cache-folder": "0.0.8",
"node-fetch": "^3.2.10",
"nth-check": "^2.1.1",
"open-graph-scraper": "^6.2.2",
"sass": "^1.54.8",
"semver-regex": "^4.0.5",
"sharp": "^0.32.6",
"simplecrawler": "^1.1.9",
"through2": "^4.0.2",
"trim-newlines": "^4.0.2",
"uglify-es": "^3.3.9",
"web-push": "^3.5.0",
"widont": "^0.3.3"
},
"devDependencies": {
"@zachleat/announcement-banner": "^1.0.8",
"broken-link-checker": "^0.7.8",
"hygen": "^6.2.11",
"netlify-cli": "^17.37.0"
},
"prettier": {
"useTabs": true,
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false
}
}
]
}
}