forked from chainguard-dev/edu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.06 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": "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": "hugo new",
"prestart": "npm run clean",
"start": "hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
"build": "hugo --gc --minify",
"build:preview": "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": "hugo server",
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
"check": "hugo version",
"postinstall": "node scripts/link-dart-sass.js"
},
"overrides": {
"adm-zip": "^0.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fullhuman/postcss-purgecss": "^8.0",
"autoprefixer": "^10.5",
"bootstrap": "^5.3",
"clipboard": "^2.0",
"eslint": "^10.8.1",
"globals": "^17.11.0",
"highlight.js": "^11.12",
"hugo-extended": "^0.155.3",
"instant.page": "^5.2",
"lazysizes": "^5.3",
"markdownlint-cli2": "^0.23.0",
"postcss": "^8.5",
"postcss-cli": "^11.0",
"sass-embedded": "^1.102.0",
"shx": "^0.4",
"stylelint": "^17.14.1",
"stylelint-config-standard-scss": "^17.0.0"
},
"dependencies": {
"@docsearch/css": "^5.0.3",
"@docsearch/js": "^5.0.3",
"@scalar/api-reference": "^1.65.1",
"bootstrap-icons": "^1.13.1"
}
}