mirror of
https://github.com/opentofu/opentofu.org.git
synced 2026-01-11 19:56:26 +00:00
* Fixing missing license (needs signoff from all contributors) Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> * Added missing license file Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> * Added explicit license for the icons Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> * Made the background image more on-brand Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> --------- Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com>
66 lines
1.7 KiB
JSON
66 lines
1.7 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",
|
|
"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",
|
|
"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",
|
|
"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"
|
|
}
|
|
}
|