-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 911 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "docs",
"version": "1.0.0",
"scripts": {
"build:css": "lessc --compress ./themes/docs/styles/docs.less ./themes/docs/static/css/style.min.css",
"build:menu": "node scripts/menuBuilder.js",
"build:site": "hugo build --logLevel info",
"build:search": "npm ci --prefix ./scripts/search/server/ && npm ci --prefix ./scripts/search/index/ && node ./scripts/search/index/createIndex.js",
"build:all": "npm run build:css && npm run build:menu && npm run build:site && npm run build:search",
"postinstall": "cp -rf ./node_modules/@fontsource ./node_modules/bootstrap-icons ./themes/docs/static/fonts"
},
"devDependencies": {
"less": "^4.3.0"
},
"dependencies": {
"@fontsource/red-hat-display": "^5.2.5",
"@fontsource/red-hat-mono": "^5.2.5",
"@fontsource/red-hat-text": "^5.2.5",
"@fontsource/roboto": "^5.2.5",
"bootstrap-icons": "^1.13.1"
}
}