-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.73 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.73 KB
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
123
124
{
"name": "aaron-gustafson.com",
"version": "2.0.0",
"description": "Aaron Gustafson’s website.",
"main": ".eleventy.js",
"type": "module",
"scripts": {
"start": "gulp && concurrently 'gulp watch' 'NODE_OPTIONS=\"--max-old-space-size=8192\" npx @11ty/eleventy --incremental --serve --quiet'",
"netlify:dev": "npx netlify dev",
"serve": "cd dist && npx http-server -p 8888 -a 127.0.0.1",
"clean": "rm -rf ./dist && mkdir -p ./dist",
"clean:cache": "rm -f _cache/webmentions_processed.json _cache/webmentions_processed.gz",
"clean:full": "npm run clean:cache && npm run clean",
"debug": "DEBUG=Eleventy* NODE_OPTIONS=\"--max-old-space-size=4096\" npx @11ty/eleventy --dryrun",
"prebuild": "gulp prebuild",
"build": "NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=6144\" npx @11ty/eleventy --quiet",
"build:fast": "NODE_ENV=production NODE_OPTIONS=\"--max-old-space-size=8192\" npx @11ty/eleventy --quiet --incremental",
"build:dev": "NODE_OPTIONS=\"--max-old-space-size=6144\" npx @11ty/eleventy --quiet",
"postbuild": "gulp postbuild",
"new:post": "plop post",
"new:link": "plop link",
"new:event": "plop event",
"new:talk": "plop talk",
"new:article": "plop article",
"new:book": "plop book",
"new:podcast": "plop podcast",
"new:press": "plop press",
"new:citation": "plop citation",
"publish:draft": "plop publish"
},
"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": "^3.1.2",
"@11ty/eleventy-fetch": "^5.1.0",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.1",
"@jlengstorf/get-share-image": "^1.0.2",
"@manustays/eleventy-plugin-codepen-iframe": "^2.0.1",
"@octokit/rest": "^22.0.1",
"concurrently": "^9.1.2",
"dotenv": "^16.6.1",
"eleventy-plugin-embed-everything": "^1.21.0",
"eleventy-plugin-images-responsiver": "^3.0.0",
"eleventy-plugin-reading-time": "0.0.1",
"eleventy-plugin-seo": "aarongustafson/eleventy-plugin-seo#develop",
"eleventy-plugin-svg-contents": "^0.7.0",
"gulp": "^5.0.1",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^3.1.0",
"gulp-concat": "^2.6.1",
"gulp-filter": "^7.0.0",
"gulp-if": "^3.0.0",
"gulp-newer": "^1.4.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^6.0.1",
"gulp-svgo": "^2.2.1",
"gulp-uglify": "^3.0.2",
"js-yaml": "^4.1.1",
"lodash": "^4.17.23",
"luxon": "^3.6.1",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-footnote": "^4.0.0",
"merge-stream": "^2.0.0",
"netlify-plugin-cache-folder": "0.0.8",
"netlify-plugin-github-dispatch": "github:aarongustafson/netlify-plugin-github-dispatch",
"node-fetch": "^3.3.2",
"sass": "^1.88.0",
"sharp": "^0.33.5",
"through2": "^4.0.2",
"uglify-es": "^3.3.9",
"widont": "^0.4.0"
},
"devDependencies": {
"plop": "^4.0.1",
"prettier": "^3.7.4",
"prettier-plugin-toml": "^2.0.6"
},
"overrides": {
"ansi-regex@^6": "6.1.0",
"css-what": "^6.1.0",
"glob-parent": "~6.0.2",
"nth-check": "^2.1.1",
"semver-regex": "^4.0.5",
"trim-newlines": "^4.0.2"
},
"prettier": {
"useTabs": true,
"plugins": [
"prettier-plugin-toml"
],
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false
}
},
{
"files": "*.toml",
"options": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": true
}
}
]
}
}