My-website/package.json
dependabot[bot] b0b43a38cf
chore(deps): bump the css-tooling group with 3 updates (#40)
Bumps the css-tooling group with 3 updates: [autoprefixer](https://github.com/postcss/autoprefixer), [postcss](https://github.com/postcss/postcss) and [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss).


Updates `autoprefixer` from 10.4.20 to 10.4.24
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/autoprefixer/compare/10.4.20...10.4.24)

Updates `postcss` from 8.5.1 to 8.5.6
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.5.1...8.5.6)

Updates `tailwindcss` from 3.4.17 to 4.1.18
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.18/packages/tailwindcss)

---
updated-dependencies:
- dependency-name: autoprefixer
  dependency-version: 10.4.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: css-tooling
- dependency-name: postcss
  dependency-version: 8.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: css-tooling
- dependency-name: tailwindcss
  dependency-version: 4.1.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: css-tooling
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-17 06:28:28 +00:00

102 lines
2.5 KiB
JSON

{
"name": "personal-site",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "vite",
"lint": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"build": "tsc && vite build",
"type-check": "tsc --noEmit",
"dev": "vite --host 0.0.0.0",
"clean": "rimraf dist node_modules/.cache",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"itty-router": "^5.0.22",
"lucide-react": "0.564.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"tailwind-merge": "^3.4.1",
"zustand": "5.0.3"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260217.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@eslint/js": "10.0.1",
"@rolldown/pluginutils": "1.0.0-beta.51",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "25.2.3",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/ui": "^1.2.2",
"autoprefixer": "10.4.24",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"baseline-browser-mapping": "2.8.31",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"husky": "^9.0.10",
"jsdom": "^24.0.0",
"lint-staged": "^16.2.7",
"postcss": "8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^5.0.5",
"tailwindcss": "4.1.18",
"typescript": "^5.3.3",
"typescript-eslint": "8.56.0",
"vite": "6.2.2",
"vite-plugin-babel": "1.3.2",
"vitest": "3.0.9",
"web-vitals": "4.2.4",
"wrangler": "^4.65.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{html,css,json,md}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=18.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@swc/core",
"esbuild",
"sharp",
"workerd"
]
}
}