-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 919 Bytes
/
package.json
File metadata and controls
15 lines (15 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"name": "fishbowler.net",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "docker run --rm -e HUGO_ENV=production -v $PWD:/app/ -w /app/ cibuilds/hugo hugo",
"server": "docker run --rm -d -p 1313:1313 -v $PWD:/app/ -w /app/ cibuilds/hugo hugo server --buildDrafts --buildFuture --bind 0.0.0.0",
"deploy": "firebase deploy --token=$FIREBASE_DEPLOY_TOKEN",
"test": "docker run -v $PWD/public/:/src/public cibuilds/hugo htmlproofer /src/public --allow-hash-href --check-html --internal-domains='fishbowler.net','fishbowler-net.web.app','localhost:1313' --empty-alt-ignore --http-status-ignore=429,999 --url-ignore 'https://developer.android.com/about/dashboards','https://source.android.com/security/bulletin/2019-08-01#2019-08-05-details','/t.co/','/twitter.com/','https://gmpg.org/xfn/11'"
},
"author": "Dan Caseley",
"devDependencies": {
"firebase-tools": "^13.30.0"
}
}