diff options
Diffstat (limited to 'docs/package.json')
-rw-r--r-- | docs/package.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 000000000..7eb04d1ed --- /dev/null +++ b/docs/package.json @@ -0,0 +1,22 @@ +{ + "name": "@astrojs/docs-template", + "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://astro-docs-preview.vercel.app/'", + "format": "prettier -w \"**/*.{css,js,jsx,ts,tsx,md,json}\"" + }, + "devDependencies": { + "@snowpack/plugin-dotenv": "^2.1.0", + "astro": "^0.17.2", + "broken-link-checker": "^0.7.8", + "npm-run-all": "^4.1.5", + "prettier": "^2.3.2", + "start-server-and-test": "^1.12.6" + } +} |