-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
99 lines (99 loc) · 3.18 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"dependencies": {
"@hint/formatter-html": "^4.3.17",
"@hint/utils": "^7.0.24",
"@hint/utils-i18n": "^1.0.15",
"algoliasearch": "^4.23.2",
"applicationinsights": "^2.6.0",
"body-parser": "^1.20.2",
"ejs": "^3.1.10",
"express": "^4.19.2",
"globby": "^11.0.0",
"highlight.js": "^11.10.0",
"hint": "^7.1.13",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"node-fetch": "2",
"strip-indent": "^3.0.0",
"xss-filters": "^1.2.7"
},
"devDependencies": {
"@hint/artwork": "^2.2.1",
"@hint/configuration-all": "^3.0.17",
"cross-env": "^7.0.0",
"eslint": "^7.0.0",
"gulp": "^4.0.2",
"gulp-brotli": "^3.0.0",
"gulp-changed": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-cli": "^2.2.0",
"gulp-concat": "^2.6.1",
"gulp-debug": "^4.0.0",
"gulp-filter": "^7.0.0",
"gulp-flatten": "^0.4.0",
"gulp-htmlmin": "^5.0.0",
"gulp-if": "^3.0.0",
"gulp-imagemin": "^7.0.0",
"gulp-load-plugins": "^2.0.8",
"gulp-rev": "^9.0.0",
"gulp-rev-delete-original": "^0.2.3",
"gulp-rev-replace": "^0.4.4",
"gulp-server-livereload": "^1.9.2",
"gulp-sri": "^0.3.1",
"gulp-transform": "^3.0.5",
"gulp-uglify-es": "^3.0.0",
"gulp-useref": "^5.0.0",
"hexo": "^7.3.0",
"hexo-cli": "^4.3.2",
"hexo-generator-index": "^4.0.0",
"hexo-generator-sitemap": "^3.0.1",
"hexo-generator-tag": "^2.0.0",
"hexo-renderer-handlebars": "^2.0.2",
"hexo-server": "^3.0.0",
"hexo-util": "^3.3.0",
"json2yaml": "^1.1.0",
"markdownlint-cli": "^0.34.0",
"marked": "^2.0.0",
"md-2-json": "^2.0.0",
"mkdirp": "^1.0.2",
"mktemp": "^1.0.1",
"normalize-path": "^3.0.0",
"npm-run-all": "^4.1.3",
"puppeteer": "5.0.0",
"remove-markdown": "^0.5.0",
"shelljs": "^0.8.3",
"stylelint": "^13.0.0",
"sw-precache": "^5.2.1",
"uslug": "^1.0.4"
},
"engines": {
"node": ">=16.0.0"
},
"hexo": {
"version": "7.3.0"
},
"private": true,
"scripts": {
"build": "npm run hexo:clean && npm run update-site && gulp",
"ci-docsearch-scraper": "node helpers/run-docsearch-scraper.js",
"dev": "npm run build -- watch",
"express:prod": "cross-env NODE_ENV=production npm run start",
"gulp": "gulp",
"hexo:clean": "hexo clean",
"lint": "npm-run-all lint:*",
"lint:js": "npm run lint-node && npm run lint-browser",
"lint:md": "markdownlint README.md ./src/hexo/source",
"lint:styles": "stylelint src/webhint-theme/**/*.css",
"lint-browser": "eslint src/webhint-theme/source/**/*.js --ignore-pattern src/webhint-theme/source/js/partials/**/*.js --ignore-pattern src/webhint-theme/source/js/scan/**/*.js",
"lint-node": "eslint {helpers,src/webhint-theme/helper/**,src/webhint-theme/scripts/**,src/server/**}/*.js",
"start": "node src/server/index.js",
"watch": "gulp watch",
"test": "npm run lint && npm run build",
"test-local": "hint http://localhost:8080 --telemetry=off",
"test-staging": "npx hint https://sonarwhal-staging.azurewebsites.net --telemetry=on",
"update-site": "node helpers/update-site.js",
"postinstall": "node helpers/postinstall.js",
"hexo": "hexo"
}
}