-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.57 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.57 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
{
"private": true,
"engines": {
"node": ">=24"
},
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=development eleventy --serve --quiet --incremental",
"editorconfig": "editorconfig-checker",
"stylelint": "stylelint \"src/styles/**/*.css\"",
"eslint": "eslint --ignore-pattern dist",
"markdown": "remark 'src/articles/**/*.md' --quiet",
"typograph": "remark",
"test": "npm run editorconfig && npm run stylelint && npm run markdown && npm run eslint",
"build": "npm run fetch-podcast-data && cross-env-shell NODE_ENV=production \"rm -rf dist && eleventy\"",
"deploy": "rsync --archive --verbose --compress --delete --delete-excluded --exclude '.DS_Store' --copy-links ./dist/ deploy@web-standards.ru:/opt/sites/web-standards.ru/public/site/",
"caddy": "scp Caddyfile root@wsd.events:/opt/sites/web-standards.ru/ && ssh root@web-standards.ru setup reload",
"fetch-podcast-data": "npm install git://github.com/web-standards/podcast.git#main --save=false --package-lock=false --ignore-scripts",
"postinstall": "npm run fetch-podcast-data"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-img": "^6.0.4",
"@eslint/js": "^10.0.1",
"@mavrin/remark-typograf": "^2.2.0",
"browserslist": "^4.28.2",
"browserslist-to-esbuild": "^2.1.1",
"cross-env": "^10.1.0",
"editorconfig-checker": "^6.1.1",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"fast-glob": "^3.3.3",
"globals": "^17.6.0",
"html-minifier-next": "^6.2.7",
"js-yaml": "^4.1.1",
"lightningcss": "^1.32.0",
"linkedom": "^0.18.12",
"markdown-it-multimd-table": "^4.2.3",
"minify-xml": "^4.5.2",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-lint": "^10.0.1",
"remark-lint-code-block-style": "^4.0.1",
"remark-lint-emphasis-marker": "^4.0.1",
"remark-lint-ordered-list-marker-value": "^4.0.1",
"remark-lint-strong-marker": "^4.0.1",
"remark-lint-unordered-list-marker-style": "^4.0.1",
"stylelint": "^17.12.0",
"stylelint-order": "^8.1.1",
"typograf": "^7.7.0"
},
"browserslist": [
"baseline newly available"
],
"nodeW3Cvalidator": {
"suppressErrors": [
"Bad value for attribute “href” on element “a”: Illegal character in fragment: “#” is not allowed.",
"Bad value “soft-light” for attribute “mode” on element “feBlend”.",
"Element “style” not allowed as child of element “div” in this context.",
"Attribute “media” not allowed on element “meta” at this point"
]
}
}