-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.05 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
{
"private": true,
"scripts": {
"start": "nodemon --watch eleventy.config.js --watch config -x 'eleventy --serve'",
"build": "rm -r public 2>/dev/null; NODE_ENV=production eleventy",
"start:book": "nodemon --watch eleventy-book.config.js --watch config --watch book/to-pdf.js -x 'eleventy --serve --config=eleventy-book.config.js'",
"build:book": "rm -r book-html 2>/dev/null; BAND_BOOK_ONESHOT=1 eleventy --serve --config=eleventy-book.config.js",
"format": "prettier --write .",
"postinstall": "node postinstall.mjs"
},
"dependencies": {
"@fontsource/niconne": "^4.5.9",
"@fontsource/quicksand": "^4.5.11",
"base64-arraybuffer": "^1.0.2",
"bootstrap": "^5.3.0",
"pretty-ms": "^9.0.0",
"puppeteer": "^22.8.0",
"puppeteer-core": "^22.8.0"
},
"devDependencies": {
"@11ty/eleventy": "2.0.1",
"@11ty/eleventy-fetch": "^3.0.0",
"@11ty/eleventy-server-browsersync": "^1.0.2",
"@iarna/toml": "^2.2.5",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@sindresorhus/slugify": "^1.1.2",
"@stefanprobst/rehype-extract-toc": "^2.2.0",
"clean-css": "^5.3.1",
"d3-array": "^3.2.1",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"dotenv": "^16.0.3",
"eleventy-hast-jsx": "^0.3.5",
"fast-glob": "^3.2.12",
"hast-util-to-html": "^8.0.3",
"listify": "^1.0.3",
"nodemon": "^2.0.20",
"prettier": "2.8.1",
"purgecss": "^5.0.0",
"purgecss-from-html": "^5.0.0",
"rehype": "^12.0.1",
"rehype-css-to-top": "^3.0.0",
"rehype-format": "^4.0.1",
"rehype-parse": "^8.0.4",
"rehype-preset-minify": "^6.0.0",
"rehype-stringify": "^9.0.3",
"remark-directive": "^2.0.1",
"remark-gfm": "^3.0.1",
"remark-heading-id": "^1.0.0",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"semver": "^7.3.8",
"subset-font": "^2.0.0",
"title": "^3.5.3",
"unified": "^10.1.2",
"vfile": "^5.3.6",
"yaml": "^2.1.3"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@popperjs/core"
]
}
}
}