fix: added missing release script to package.json 🔧

This commit is contained in:
2025-09-20 13:26:41 +05:00
parent 950ac676f0
commit 1399527ddb
2 changed files with 3289 additions and 103 deletions

3208
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,66 +1,122 @@
{ {
"name": "sarlink-portal", "name": "sarlink-portal",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "next lint" "lint": "next lint",
}, "prepare": "husky",
"dependencies": { "release": "release-it"
"@faker-js/faker": "^9.3.0", },
"@hookform/resolvers": "^5.1.1", "dependencies": {
"@pyncz/tailwind-mask-image": "^2.0.0", "@commitlint/cli": "^19.8.1",
"@radix-ui/react-dialog": "^1.1.14", "@commitlint/config-conventional": "^19.8.1",
"@radix-ui/react-progress": "^1.1.7", "@faker-js/faker": "^9.3.0",
"@tailwindcss/postcss": "^4.1.11", "@hookform/resolvers": "^5.1.1",
"@tanstack/react-query": "^5.61.4", "@pyncz/tailwind-mask-image": "^2.0.0",
"axios": "^1.8.4", "@radix-ui/react-dialog": "^1.1.14",
"class-variance-authority": "^0.7.1", "@radix-ui/react-progress": "^1.1.7",
"clsx": "^2.1.1", "@tailwindcss/postcss": "^4.1.11",
"cmdk": "^1.1.1", "@tanstack/react-query": "^5.61.4",
"date-fns": "^4.1.0", "axios": "^1.8.4",
"embla-carousel-react": "^8.6.0", "class-variance-authority": "^0.7.1",
"input-otp": "^1.4.2", "clsx": "^2.1.1",
"jotai": "2.8.0", "cmdk": "^1.1.1",
"lucide-react": "^0.523.0", "commitlint": "^19.8.1",
"moment": "^2.30.1", "date-fns": "^4.1.0",
"motion": "^12.15.0", "embla-carousel-react": "^8.6.0",
"next": "15.3.3", "husky": "^9.1.7",
"next-auth": "^4.24.11", "input-otp": "^1.4.2",
"next-themes": "^0.4.6", "jotai": "2.8.0",
"nextjs-toploader": "^3.7.15", "lucide-react": "^0.523.0",
"nuqs": "^2.4.3", "moment": "^2.30.1",
"radix-ui": "^1.4.2", "motion": "^12.15.0",
"react": "19.1.0", "next": "15.3.3",
"react-aria-components": "^1.5.0", "next-auth": "^4.24.11",
"react-day-picker": "^9.7.0", "next-themes": "^0.4.6",
"react-dom": "19.1.0", "nextjs-toploader": "^3.7.15",
"react-hook-form": "^7.58.1", "nuqs": "^2.4.3",
"react-phone-number-input": "^3.4.9", "radix-ui": "^1.4.2",
"react-resizable-panels": "^3.0.3", "react": "19.1.0",
"recharts": "^3.0.0", "react-aria-components": "^1.5.0",
"sonner": "^2.0.5", "react-day-picker": "^9.7.0",
"tailwind-merge": "^3.3.1", "react-dom": "19.1.0",
"tailwindcss-animate": "^1.0.7", "react-hook-form": "^7.58.1",
"vaul": "^1.1.2", "react-phone-number-input": "^3.4.9",
"zod": "^3.25.67" "react-resizable-panels": "^3.0.3",
}, "recharts": "^3.0.0",
"devDependencies": { "release-it": "^19.0.5",
"@biomejs/biome": "2.0.6", "sonner": "^2.0.5",
"@types/node": "^22.10.2", "tailwind-merge": "^3.3.1",
"@types/react": "^19.1.0", "tailwindcss-animate": "^1.0.7",
"@types/react-dom": "^19.1.2", "vaul": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^8.35.0", "zod": "^3.25.67"
"@typescript-eslint/parser": "^8.35.0", },
"eslint": "^9.29.0", "devDependencies": {
"eslint-config-next": "15.1.2", "@biomejs/biome": "2.0.6",
"postcss": "^8.5.6", "@types/node": "^22.10.2",
"tailwindcss": "^4.1.11", "@types/react": "^19.1.0",
"tailwindcss-motion": "^1.1.0", "@types/react-dom": "^19.1.2",
"ts-node": "^10.9.2", "@typescript-eslint/eslint-plugin": "^8.35.0",
"tw-animate-css": "^1.3.4", "@typescript-eslint/parser": "^8.35.0",
"typescript": "^5.8.3" "eslint": "^9.29.0",
} "eslint-config-next": "15.1.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.11",
"tailwindcss-motion": "^1.1.0",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "style",
"section": "Style"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
}
}
} }