-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.92 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
{
"name": "academy-theme",
"version": "0.12.0",
"version.next": "0.12.1-dev-unreleased",
"description": "Example site for Academy Theme",
"repository": "github:layer5io/academy-theme",
"homepage": "https://cloud.layer5.io/academy",
"author": "Layer5 Authors",
"license": "Apache-2.0",
"bugs": "https://github.com/layer5io/academy-theme/issues",
"private": true,
"spelling": "cSpell:ignore docsy hugo htmltest precheck postbuild rtlcss -",
"scripts": {
"_hugo": "hugo --cleanDestinationDir",
"_hugo-dev": "npm run _hugo -- -e dev -DFE",
"_build": "npm run _hugo-dev",
"_site": "npm run _hugo-dev -- --minify server",
"_check:links": "echo \"Skipped: go run github.com/wjdp/htmltest@${HTMLTEST_VERSION:-latest} -s\"",
"build": "npm run _build",
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
"build:production": "npm run _hugo -- --minify --gc",
"site": "npm run _site",
"site:no-watch": "npm run _hugo-dev -- --minify --watch=false server",
"clean": "rm -Rf public/* resources",
"make:public": "git init -b main public",
"check:links": "npm run _check:links",
"precheck:links": "npm run build",
"postbuild:preview": "npm run _check:links",
"postbuild:production": "npm run _check:links",
"test": "npm run check:links",
"format": "prettier --write .",
"format:check": "prettier --check .",
"update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
"update:pkgs": "npx npm-check-updates -u"
},
"devDependencies": {
"autoprefixer": "^10.5.0",
"hugo-extended": "0.158.0",
"postcss": "^8.5.15",
"postcss-cli": "^11.0.1",
"prettier": "3.8.3",
"rtlcss": "^4.3.0"
},
"optionalDependencies": {
"npm-check-updates": "^18.0.1"
},
"prettier": {
"proseWrap": "always",
"singleQuote": true
}
}