astro/docs/package.json
2021-07-16 06:59:46 -04:00

21 lines
726 B
JSON

{
"name": "docs",
"version": "0.0.2",
"private": true,
"scripts": {
"start": "astro dev",
"build": "astro build",
"lint": "run-p --aggregate-output lint:linkcheck",
"lint:linkcheck": "start-test 'yarn start --silent' 3000 'yarn lint:linkcheck:local'",
"lint:linkcheck:local": "blc -ro --user-agent 'broken-link-checker/0.7.8' 'http://localhost:3000'",
"lint:linkcheck:remote": "blc -ro --user-agent 'broken-link-checker/0.7.8' 'https://docs.astro.build/'"
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.1.0",
"astro": "^0.18.0-next.1",
"broken-link-checker": "^0.7.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"start-server-and-test": "^1.12.6"
}
}