Files
nomad/website/package.json
dependabot[bot] a13f0c6c2d build(deps-dev): bump next from 13.4.2 to 14.0.1 in /website (#18999)
Bumps [next](https://github.com/vercel/next.js) from 13.4.2 to 14.0.1.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v13.4.2...v14.0.1)

---
updated-dependencies:
- dependency-name: next
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-06 09:22:53 -05:00

34 lines
951 B
JSON

{
"name": "nomad-docs-platform",
"description": "Documentation website for Nomad",
"version": "1.0.0",
"author": "HashiCorp",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.x <=18.x"
},
"devDependencies": {
"@hashicorp/platform-cli": "^2.6.0",
"@hashicorp/platform-content-conformance": "^0.0.12",
"dart-linkcheck": "^2.0.15",
"husky": "4.3.8",
"next": "^14.0.1",
"prettier": "2.8.8"
},
"husky": {
"hooks": {
"pre-commit": "next-hashicorp precommit"
}
},
"scripts": {
"build": "./scripts/website-build.sh",
"format": "next-hashicorp format",
"generate:component": "next-hashicorp generate component",
"generate:readme": "next-hashicorp markdown-blocks README.md",
"lint": "next-hashicorp lint",
"start": "./scripts/website-start.sh",
"linkcheck": "linkcheck https://developer.hashicorp.com/nomad",
"content-check": "hc-content --config base-docs"
}
}