astro/docs/package.json

22 lines
726 B
JSON
Raw Normal View History

2021-07-15 18:13:35 +00:00
{
2021-07-15 18:33:06 +00:00
"name": "docs",
2021-07-15 18:13:35 +00:00
"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/'"
2021-07-15 18:13:35 +00:00
},
"devDependencies": {
"@snowpack/plugin-dotenv": "^2.1.0",
2021-07-15 18:33:06 +00:00
"astro": "^0.18.0-next.1",
2021-07-15 18:13:35 +00:00
"broken-link-checker": "^0.7.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"start-server-and-test": "^1.12.6"
}
}