-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "@redbrick/atlas",
"author": "Jed Hazaymeh <[email protected]>",
"version": "0.1.1",
"packageManager": "[email protected]",
"engines": {
"node": "^18.17 || ^20"
},
"scripts": {
"clean": "rimraf dist",
"eleventy:dev": "eleventy --serve",
"dev": "run-s clean eleventy:dev",
"eleventy": "eleventy",
"build": "NODE_ENV=production run-s clean eleventy"
},
"eleventy": {
"dir": {
"input": "src/site",
"output": "dist",
"data": "../_data",
"includes": "../_includes",
"layouts": "../_layouts"
},
"templateFormats": [
"njk",
"md",
"html"
],
"htmlTemplateEngine": "njk",
"markdownTemplateEngine": "njk"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@redbrick/design-system": "https://github.com/redbrick/design-system",
"@types/markdown-it": "^13.0.7",
"@xpd/tailwind-3dtransforms": "^1.0.3",
"autoprefixer": "^10.4.17",
"debug": "^4.3.4",
"eleventy-plugin-postcss": "^1.0.4",
"eleventy-plugin-toc": "^1.1.5",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"luxon": "^3.4.4",
"markdown-it": "^14.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-replace-link": "^1.2.1",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"pagefind": "^1.0.4",
"postcss": "^8.4.33",
"postcss-load-config": "^5.0.2",
"reading-time": "^1.5.0",
"rimraf": "^5.0.5",
"simple-git": "^3.22.0",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.1"
}
}