astro/docs/package.json

29 lines
1.1 KiB
JSON
Raw Normal View History

2021-07-15 18:13:35 +00:00
{
2021-07-15 18:33:06 +00:00
"name": "docs",
"version": "0.0.3",
2021-07-15 18:13:35 +00:00
"private": true,
"scripts": {
"start": "astro dev",
"build": "astro build",
"lint": "run-p --aggregate-output lint:linkcheck",
"lint:a11y": "start-test 'yarn start --silent' 3000 'yarn lint:a11y:local'",
"lint:a11y:local": "pa11y-ci --sitemap 'http://localhost:3000/sitemap.xml' --sitemap-find 'https://docs.astro.build' --sitemap-replace 'http://localhost:3000'",
"lint:a11y:remote": "pa11y-ci --sitemap 'https://docs.astro.build/sitemap.xml'",
2021-07-15 18:13:35 +00:00
"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",
"astro": "^0.18.2",
2021-07-15 18:13:35 +00:00
"broken-link-checker": "^0.7.8",
"npm-run-all": "^4.1.5",
"pa11y-ci": "^2.4.2",
2021-07-15 18:13:35 +00:00
"prettier": "^2.3.2",
"start-server-and-test": "^1.12.6"
},
"dependencies": {
"@docsearch/react": "^1.0.0-alpha.27"
2021-07-15 18:13:35 +00:00
}
}