vagrant/website/package.json

31 lines
814 B
JSON
Raw Normal View History

2020-05-05 16:38:44 -04:00
{
"name": "vagrant-docs",
"description": "Documentation website for HashiCorp Vagrant",
"version": "1.0.0",
"author": "HashiCorp",
"devDependencies": {
"@hashicorp/platform-cli": "^2.6.0",
"@hashicorp/platform-content-conformance": "^0.0.9",
2022-04-19 16:09:05 -04:00
"husky": "4.3.8",
"next": "^12.3.1",
2022-04-19 16:09:05 -04:00
"prettier": "2.2.1"
2020-05-05 16:38:44 -04:00
},
"husky": {
"hooks": {
"pre-commit": "next-hashicorp precommit"
}
},
"scripts": {
2022-04-19 16:09:05 -04:00
"build": "./scripts/website-build.sh",
2020-05-05 16:38:44 -04:00
"format": "next-hashicorp format",
2020-06-01 19:15:13 -04:00
"generate:readme": "next-hashicorp markdown-blocks README.md",
2020-05-05 16:38:44 -04:00
"lint": "next-hashicorp lint",
2022-04-19 16:09:05 -04:00
"linkcheck": "linkcheck https://vagrantup.com",
"start": "./scripts/website-start.sh",
"content-check": "hc-content --config base-docs"
2021-10-04 16:57:52 -04:00
},
"engines": {
"npm": ">=7.0.0"
2020-05-05 16:38:44 -04:00
}
}