This repository has been archived by the owner on Aug 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
31 lines (31 loc) · 1.5 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
{
"name": "eksworkshop",
"version": "1.0.0",
"homepage": "https://github.com/aws-samples/eks-workshop#readme",
"bugs": {
"url": "https://github.com/aws-samples/eks-workshop/issues"
},
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aws-samples/eks-workshop.git"
},
"scripts": {
"theme": "git submodule init && git submodule update",
"drafts": "hugo server -w -v -DF --disableFastRender --enableGitInfo --bind=0.0.0.0",
"server": "hugo server -w -v --enableGitInfo --bind=0.0.0.0 --port 8080 --navigateToChanged",
"build": "hugo -v",
"test": "docker run -v $PWD/public/:/public 18fgsa/html-proofer /public --empty-alt-ignore --allow-hash-href --log-level ':debug'",
"deploy": "aws s3 sync public/ s3://us-east-1-eksworkshop.com/ --delete",
"deploycontent": "aws s3 sync public/ s3://us-east-1-eksworkshop.com/ --delete --cache-control \"max-age=3600, public\" --exclude \"*\" --include \"*.html\" --include \"*.xml\"",
"deploytemplates": "aws s3 sync templates/ s3://${TEMPLATE_BUCKET}/templates/${CODEBUILD_GIT_CLEAN_BRANCH}/ --delete --acl public-read --cache-control \"max-age=86400, public\"",
"deployothers": "aws s3 sync public/ s3://us-east-1-eksworkshop.com/ --delete --cache-control \"max-age=86400, public\" --exclude \"*.html\" --exclude \"*.xml\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"hugo-bin": "^0.46.3",
"hugo-lunr": "0.0.4",
"mermaid": "^8.3.1"
}
}