forked from amazon-archives/amplify-photo-gallery-workshop
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
28 lines (28 loc) · 1.14 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
{
"name": "amplify-photo-gallery-workshop",
"version": "1.0.0",
"homepage": "https://github.com/aws-samples/amplify-photo-gallery-workshop#readme",
"bugs": {
"url": "https://github.com/aws-samples/amplify-photo-gallery-workshop/issues"
},
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/aws-samples/amplify-photo-gallery-workshop.git"
},
"scripts": {
"test": "hugo server -w -v -DF --disableFastRender --enableGitInfo --bind=0.0.0.0",
"server": "hugo server -w -v --enableGitInfo --bind=0.0.0.0",
"build": "hugo -v",
"deploy": "aws s3 sync public/ s3://amplify-workshop.go-aws.com/ --delete --profile amplify-workshop",
"deploycontent": "aws s3 sync public/ s3://amplify-workshop.go-aws.com/ --delete --cache-control \"max-age=3600, public\" --exclude \"*\" --include \"*.html\" --include \"*.xml\"",
"deployothers": "aws s3 sync public/ s3://amplify-workshop.go-aws.com/ --delete --cache-control \"max-age=86400, public\" --exclude \"*.html\" --exclude \"*.xml\""
},
"dependencies": {
"hugo-cli": "^0.7.0",
"hugo-lunr": "0.0.4",
"discharge": "^0.7.1",
"qs": "^6.5.2"
}
}