-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
37 lines (37 loc) · 1.8 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
32
33
34
35
36
37
{
"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 brentley/htmlproofer /public --empty-alt-ignore --allow-hash-href --url-ignore '/s3.amazonaws.com/eksworkshop.com/templates/' --typhoeus-config '{\"connecttimeout\":30,\"timeout\":90,\"headers\":{\"User-Agent\":\"Mozilla/5.0\",\"Authorization\":\"token $GITHUB_TOKEN\"}}'",
"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/${AWS_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.11.2",
"bl": ">=1.2.3",
"hugo-bin": "^0.68.0",
"hugo-lunr": "0.0.4",
"ini": ">=1.3.6",
"mermaid": "^9.1.3"
},
"devDependencies": {
"normalize-url": ">=4.5.1",
"cacheable-request": ">=7.0.2"
}
}