-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.76 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
69
70
71
72
73
74
75
76
{
"name": "chainguard-academy-theme",
"description": "Chainguard Academy",
"version": "0.4.3",
"engines": {
"node": ">=22"
},
"browserslist": [
"defaults"
],
"repository": "https://github.com/chainguard-dev/edu",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"prestart": "npm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"build:preview": "exec-bin node_modules/.bin/hugo/hugo --gc --minify --buildFuture",
"build:staging": "npm run build -e staging",
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json node_modules ",
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint assets/js config",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"lint:markdown-fix": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
"server": "exec-bin node_modules/.bin/hugo/hugo server",
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fullhuman/postcss-purgecss": "^8.0",
"autoprefixer": "^10.5",
"bootstrap": "^5.3",
"clipboard": "^2.0",
"eslint": "^10.8.0",
"exec-bin": "^1.0.0",
"globals": "^17.9.0",
"highlight.js": "^11.5",
"hugo-installer": "^4.0",
"instant.page": "^5.2",
"lazysizes": "^5.3",
"markdownlint-cli2": "^0.23.0",
"postcss": "^8.5",
"postcss-cli": "^11.0",
"purgecss-whitelister": "^2.4",
"shx": "^0.4",
"stylelint": "^17.14.1",
"stylelint-config-standard-scss": "^17.0.0"
},
"otherDependencies": {
"hugo": "0.152.1"
},
"dependencies": {
"@docsearch/css": "^4.7.0",
"@docsearch/js": "^4.7.0",
"@scalar/api-reference": "^1.64.0",
"bootstrap-icons": "^1.13.1"
},
"//overrides": "semver: hugo-installer@4.0.1 hard-pins semver 7.3.x (vulnerable to ReDoS GHSA-c2qf-rxjj-qqgw, >=7.0.0 <7.5.2) with no upstream fix, so we force its transitive semver to a patched 7.x. Scoped to hugo-installer so execa's non-vulnerable semver 5.x is left alone. See DOCS-107.",
"overrides": {
"decompress": "npm:@xhmikosr/decompress@^11.1.3",
"hugo-installer": {
"semver": "^7.5.2"
}
}
}