-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.5 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
{
"name": "grislyeye.com",
"version": "3.34.1",
"type": "module",
"author": {
"name": "Ric Wood",
"email": "ric@grislyeye.com",
"url": "https://grislyeye.com/"
},
"engines": {
"node": ">=25.0.0"
},
"dependencies": {
"lit": "^3.3.3",
"skeleton-css": "^2.0.4",
"vellum-dice": "^0.3.0",
"vellum-monster": "^1.3.2",
"vellum-random-table": "^1.2.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-fetch": "^5.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-bundle": "^3.0.7",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@lit-labs/eleventy-plugin-lit": "^1.0.6",
"@mdit/plugin-alert": "^0.23.2",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@types/node": "^25.9.3",
"@webcomponents/template-shadowroot": "^0.2.1",
"eleventy-google-fonts": "^0.1.0",
"eleventy-plugin-gen-favicons": "^1.1.3",
"eleventy-plugin-seo": "^0.5.2",
"esbuild": "^0.28.1",
"eslint": "^10.5.0",
"eslint-plugin-lit": "^2.3.1",
"eslint-plugin-wc": "^3.1.0",
"linkinator": "^7.6.1",
"luxon": "^3.7.2",
"markdown-it-anchor": "^9.2.0",
"markdownlint-cli2": "^0.22.1",
"papaparse": "^5.5.3",
"plop": "^4.0.5",
"prettier": "3.8.4",
"rimraf": "^6.1.3",
"stylelint": "^17.13.0",
"stylelint-config-standard": "^40.0.0"
},
"scripts": {
"build": "npx @11ty/eleventy",
"clean": "rimraf _site",
"start": "npx @11ty/eleventy --serve --quiet",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debug:start": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"test": "npm run test:lint && npm run test:links",
"test:pr": "npm run test:lint && npm run test:links:soft",
"test:lint": "prettier . --check && eslint --ext .js . && stylelint public/css/*.css && markdownlint-cli2 'content/**/*.md' 'README.md'",
"test:lint:fix": "prettier . --write && markdownlint-cli2 --fix 'content/**/*.md' 'README.md'",
"test:links": "npx linkinator ./_site --retry --concurrency 1 --recurse --check-css --check-fragments --verbosity error --skip '(.*\\.reddit\\.com)'",
"test:links:soft": "npx linkinator ./_site --status-code '404:warn' --retry --concurrency 1 --recurse --check-css --check-fragments --verbosity error --skip '(.*\\.reddit\\.com)'",
"post:new": "plop post",
"product:new": "plop product",
"review:new": "plop review"
}
}