opentofu.org/package.json
James Humphries a163d3d043
Redesign landing page to focus on OpenTofu's future (#365)
* feat: Redesign landing page to focus on OpenTofu's future

This commit introduces a new landing page that shifts focus to OpenTofu's
forward momentum and unique capabilities. The redesign:

- Highlights OpenTofu's powerful features like state encryption at rest,
  provider iteration, and early variable evaluation
- Simplifies the supporters list to improve readability
- Removes the manifesto to streamline the user experience
- Provides clearer, more concise examples of OpenTofu's capabilities
- Makes it easier for new users to understand OpenTofu's value proposition

The new design emphasizes OpenTofu's technical strengths while maintaining
a clean, professional appearance that aligns with the project's maturity.

Signed-off-by: James Humphries <james@james-humphries.co.uk>

* Various fixes and improvements

Signed-off-by: James Humphries <james@james-humphries.co.uk>
2025-05-01 10:47:56 +01:00

69 lines
1.9 KiB
JSON

{
"name": "website",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"clear": "docusaurus clear",
"typecheck": "tsc",
"sync-supporters": "node ./sync-supporters.js",
"sync-contributor-stats": "node ./scripts/fetch-contributor-stats.js",
"prepare": "husky install",
"lint": "eslint --cache \"**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@docusaurus/core": "3.1.0",
"@docusaurus/module-type-aliases": "3.1.0",
"@docusaurus/plugin-client-redirects": "3.1.0",
"@docusaurus/preset-classic": "3.1.0",
"@docusaurus/tsconfig": "3.1.0",
"@docusaurus/types": "^3.1.0",
"@mdx-js/react": "^3.0.0",
"@tailwindcss/typography": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"autoprefixer": "^10.4.16",
"cheerio": "^1.0.0-rc.12",
"clsx": "^2.1.0",
"eslint": "^8.56.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"framer-motion": "^12.7.4",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prism-react-renderer": "^2.3.1",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"swiper": "^11.2.6",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18.17.1"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^15.2.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}