-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.88 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.88 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
{
"name": "website",
"description": "redux personal website",
"private": "true",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/reduxflakes/website.git"
},
"scripts": {
"start": "eleventy --serve --watch",
"start:fast": "eleventy --serve --watch --incremental",
"start:neko": "cross-env HOST_TYPE=nekoweb BUILD_TYPE=production deno task start",
"start:neo": "cross-env HOST_TYPE=neocities BUILD_TYPE=production deno task start",
"start:prod": "cross-env BUILD_TYPE=production deno task start",
"html-minify": "html-minifier-terser --config-file=.html-minifier.json --input-dir=_site --output-dir=_site --file-ext=html",
"build": "eleventy",
"build:prod": "cross-env BUILD_TYPE=production eleventy && deno task html-minify",
"build:neko": "cross-env HOST_TYPE=nekoweb deno task build:prod",
"build:neo": "cross-env HOST_TYPE=neocities deno task build:prod",
"debug": "cross-env DEBUG=Eleventy* eleventy --serve --watch"
},
"keywords": [],
"author": "reduxflakes",
"license": "GPL-2.0-only",
"dependencies": {
"@11ty/eleventy": "^4.0.0-alpha.6",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@grimlink/eleventy-plugin-lucide-icons": "^2.1.12",
"@uncenter/eleventy-plugin-toc": "^1.0.3",
"autoprefixer": "^10.4.24",
"cross-env": "^10.1.0",
"cssnano": "^7.1.2",
"eleventy-plugin-og-image": "^4.2.1",
"eleventy-plugin-time-to-read": "^1.3.0",
"html-minifier-terser": "^7.2.0",
"luxon": "^3.7.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-footnote": "^4.0.0",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-load-config": "^6.0.1",
"slug": "^11.0.1"
}
}