forked from web-standards-ru/web-standards.ru
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.48 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
67
68
69
70
71
72
73
74
{
"private": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "eleventy --serve --quiet",
"editorconfig": "editorconfig-checker",
"stylelint": "stylelint \"src/styles/**/*.css\"",
"eslint": "eslint src/**/*.js",
"markdown": "remark 'src/articles/**/*.md' --quiet",
"typograph": "remark",
"html": "node-w3c-validator -i ./dist/**/*.html --exclude ./dist/**/demos/** -f lint -evH",
"test": "npm run editorconfig && npm run stylelint && npm run markdown && npm run eslint",
"build": "rm -rf dist && eleventy && gulp build",
"deploy": "cd dist && rsync --archive --compress --delete . [email protected]:/var/www/web-standards.ru/html/"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@mavrin/remark-typograf": "^2.2.0",
"autoprefixer": "^10.3.6",
"del": "6.0.0",
"editorconfig-checker": "^5.0.1",
"eslint": "^8.7.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-postcss": "^9.0.1",
"gulp-replace": "^1.1.3",
"gulp-rev": "9.0.0",
"gulp-rev-rewrite": "^5.0.0",
"gulp-terser": "^2.1.0",
"html-minifier": "^4.0.0",
"hyphen": "^1.6.2",
"linkedom": "^0.14.7",
"markdown-it-multimd-table": "^4.1.1",
"node-w3c-validator": "^2.0.1",
"node-xml-stream": "^1.0.2",
"postcss": "^8.3.8",
"postcss-color-hex-alpha": "^9.0.2",
"postcss-csso": "^6.0.0",
"postcss-import": "^15.0.1",
"pretty-data": "^0.40.0",
"remark-cli": "^11.0.0",
"remark-frontmatter": "^4.0.1",
"remark-lint": "^9.1.1",
"remark-lint-code-block-style": "^3.1.0",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-ordered-list-marker-value": "^3.1.1",
"remark-lint-strong-marker": "^3.1.1",
"remark-lint-unordered-list-marker-style": "^3.1.1",
"rollup-stream": "^1.24.1",
"stylelint": "^15.6.0",
"stylelint-order": "^6.0.1",
"typograf": "^7.0.0",
"vinyl-buffer": "^1.0.1",
"vinyl-paths": "3.0.1",
"vinyl-source-stream": "^2.0.0"
},
"browserslist": [
"last 2 version",
"not dead",
"not ie <= 11"
],
"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."
]
}
}