profile/package.json
ilia b523b67587 chore(deploy): server script to reset main, npm ci, build, rsync dist
- Hard reset to origin/main so local package edits cannot block pulls
- Optional rsync to SITE_ROOT (default /var/www/iliadobkin.com) if dir exists
- engines.node >=20.19, .nvmrc 22 for Vite 7

Made-with: Cursor
2026-03-24 23:27:54 -04:00

94 lines
2.5 KiB
JSON

{
"name": "@arifszn/gitprofile",
"description": "Create an automatic portfolio based on GitHub profile",
"version": "4.0.0",
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"license": "MIT",
"author": "arifszn",
"repository": {
"type": "git",
"url": "https://github.com/arifszn/gitprofile.git"
},
"bugs": {
"url": "https://github.com/arifszn/gitprofile/issues"
},
"scripts": {
"dev": "vite",
"build": "NODE_OPTIONS=--max-old-space-size=3072 tsc && NODE_OPTIONS=--max-old-space-size=3072 vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --check \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"prettier:fix": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"preview": "vite preview",
"deploy:site": "bash scripts/deploy-site.sh"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"overrides": {
"serialize-javascript": "^7.0.4"
},
"devDependencies": {
"@arifszn/blog-js": "^2.0.6",
"@tailwindcss/postcss": "^4.1.11",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.4.1",
"axios": "^1.13.5",
"daisyui": "^5.0.43",
"date-fns": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.20",
"postcss": "^8.4.38",
"prettier": "^3.6.2",
"react-hotjar": "^6.3.1",
"react-icons": "^5.4.0",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vail": "^1.0.3",
"vite": "^7.3.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-pwa": "^1.2.0"
},
"keywords": [
"git-profile",
"gitprofile",
"gitportfolio",
"personal-site",
"template",
"portfolio",
"resume",
"cv",
"personal-website",
"portfolio-website",
"portfolio-site",
"portfolio-template",
"portfolio-page",
"developer-portfolio",
"portfolio-project",
"github-portfolio",
"tailwind-portfolio",
"vite-portfolio",
"projects",
"open-source",
"git",
"react-portfolio",
"github",
"github-page",
"github-pages",
"github-portfolio",
"vite-portfolio",
"academic-portfolio",
"github-api"
]
}