- useAuth와 useUser에서 react-hooks/rules-of-hooks 규칙 비활성화 - Clerk이 비활성화된 상황에서의 조건부 Hook 호출은 의도된 동작
178 lines
7.1 KiB
JSON
178 lines
7.1 KiB
JSON
{
|
|
"name": "zellyy-finance",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"preview": "vite preview",
|
|
"type-check": "tsc --noEmit",
|
|
"type-check:watch": "tsc --noEmit --watch",
|
|
"check-all": "npm run type-check && npm run lint",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:run": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"prepare": "husky",
|
|
"deploy": "vercel --prod",
|
|
"deploy:preview": "vercel",
|
|
"vercel:setup": "./scripts/vercel-setup.sh",
|
|
"vercel:env": "node scripts/setup-vercel-env.js",
|
|
"build:analyze": "npm run build && npx vite-bundle-analyzer dist",
|
|
"analyze:detailed": "npm run build -- --mode=analyze",
|
|
"build:sentry": "SENTRY_DISABLE_SOURCEMAPS=false npm run build:prod",
|
|
"sentry:release": "sentry-cli releases new $SENTRY_RELEASE && sentry-cli releases finalize $SENTRY_RELEASE",
|
|
"sentry:deploy": "sentry-cli releases deploys $SENTRY_RELEASE new -e production",
|
|
"mobile:sync": "npx cap sync",
|
|
"mobile:copy": "npx cap copy",
|
|
"mobile:build": "vite build --mode production && npm run mobile:sync",
|
|
"android:build": "npm run mobile:build && npx cap build android",
|
|
"android:open": "npx cap open android",
|
|
"android:run": "npx cap run android",
|
|
"android:release": "npm run mobile:build && cd android && ./gradlew assembleRelease",
|
|
"android:bundle": "npm run mobile:build && cd android && ./gradlew bundleRelease",
|
|
"ios:build": "npm run mobile:build && npx cap build ios",
|
|
"ios:open": "npx cap open ios",
|
|
"ios:run": "npx cap run ios",
|
|
"ios:archive": "npm run mobile:build && npx cap run ios --configuration Release",
|
|
"mobile:clean": "npx cap clean && npm run mobile:sync",
|
|
"version:sync": "node scripts/sync-versions.cjs",
|
|
"version:check": "node scripts/sync-versions.cjs --check",
|
|
"version:post-release": "node scripts/release-version.cjs",
|
|
"release:prepare": "npm run version:sync && npm run mobile:build",
|
|
"release:test": "node scripts/semantic-release-linear-plugin.cjs prepare 1.0.0-test",
|
|
"test:runner": "node scripts/test-runner.cjs",
|
|
"test:ci": "node scripts/test-runner.cjs --fail-fast --skip-optional",
|
|
"build:dev": "node scripts/build-env.cjs development && vite build --mode development && npm run mobile:sync",
|
|
"build:staging": "node scripts/build-env.cjs staging && vite build --mode staging && npm run mobile:sync",
|
|
"build:prod": "node scripts/build-env.cjs production && vite build --mode production && npm run mobile:sync",
|
|
"keystore:debug": "bash scripts/generate-debug-keystore.sh",
|
|
"keystore:info": "keytool -list -v -keystore android/app/keystore/release.keystore",
|
|
"pipeline:test": "bash scripts/test-build-pipeline.sh",
|
|
"pipeline:validate": "npm run check-all && npm run build:prod && npm run mobile:sync",
|
|
"store:deploy": "node scripts/store-deploy.cjs",
|
|
"store:metadata": "node scripts/update-store-metadata.cjs",
|
|
"deploy:android": "node scripts/store-deploy.cjs android",
|
|
"deploy:ios": "node scripts/store-deploy.cjs ios",
|
|
"deploy:both": "node scripts/store-deploy.cjs both",
|
|
"deploy:dry-run": "node scripts/store-deploy.cjs both --dry-run",
|
|
"linear:sync": "node scripts/linear-sync.cjs",
|
|
"linear:comment": "node scripts/linear-comment.cjs",
|
|
"linear:release-prep": "node scripts/linear-release-prep.cjs",
|
|
"linear:release-complete": "node scripts/linear-release-complete.cjs",
|
|
"linear:test": "node scripts/test-linear-integration.cjs",
|
|
"linear:setup": "node scripts/linear-github-setup.cjs",
|
|
"linear:test-workflow": "node scripts/linear-workflow-tester.cjs",
|
|
"linear:dashboard": "node scripts/linear-dashboard-generator.cjs",
|
|
"release": "semantic-release",
|
|
"release:dry-run": "semantic-release --dry-run"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"*.{js,jsx,json,css,md}": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@capacitor/android": "^7.4.2",
|
|
"@capacitor/cli": "^7.4.2",
|
|
"@capacitor/core": "^7.4.2",
|
|
"@capacitor/ios": "^7.4.2",
|
|
"@clerk/clerk-mcp": "^0.0.13",
|
|
"@clerk/clerk-react": "^5.33.0",
|
|
"@clerk/localizations": "^3.18.0",
|
|
"@hookform/resolvers": "^3.9.0",
|
|
"@radix-ui/react-accordion": "^1.2.0",
|
|
"@radix-ui/react-alert-dialog": "^1.1.1",
|
|
"@radix-ui/react-avatar": "^1.1.0",
|
|
"@radix-ui/react-checkbox": "^1.1.1",
|
|
"@radix-ui/react-collapsible": "^1.1.0",
|
|
"@radix-ui/react-dialog": "^1.1.2",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
"@radix-ui/react-label": "^2.1.0",
|
|
"@radix-ui/react-popover": "^1.1.1",
|
|
"@radix-ui/react-progress": "^1.1.0",
|
|
"@radix-ui/react-select": "^2.1.1",
|
|
"@radix-ui/react-separator": "^1.1.0",
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
"@radix-ui/react-switch": "^1.1.0",
|
|
"@radix-ui/react-tabs": "^1.1.0",
|
|
"@radix-ui/react-toast": "^1.2.1",
|
|
"@radix-ui/react-toggle": "^1.1.0",
|
|
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
"@radix-ui/react-tooltip": "^1.1.4",
|
|
"@sentry/react": "^9.38.0",
|
|
"@sentry/tracing": "^7.120.3",
|
|
"@sentry/vite-plugin": "^3.5.0",
|
|
"@supabase/supabase-js": "^2.50.5",
|
|
"@tanstack/react-query": "^5.83.0",
|
|
"@tanstack/react-query-devtools": "^5.83.0",
|
|
"@types/uuid": "^10.0.0",
|
|
"chart.js": "^4.5.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^3.6.0",
|
|
"dotenv": "^16.6.1",
|
|
"lucide-react": "^0.462.0",
|
|
"next-themes": "^0.3.0",
|
|
"react": "^18.3.1",
|
|
"react-chartjs-2": "^5.3.0",
|
|
"react-day-picker": "^8.10.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "^7.53.0",
|
|
"react-router-dom": "^6.26.2",
|
|
"sonner": "^1.5.0",
|
|
"tailwind-merge": "^2.6.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"uuid": "^11.1.0",
|
|
"web-vitals": "^5.0.3",
|
|
"zod": "^3.23.8",
|
|
"zustand": "^5.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.9.0",
|
|
"@playwright/test": "^1.54.1",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/exec": "^7.1.0",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@semantic-release/github": "^11.0.3",
|
|
"@testing-library/jest-dom": "^6.6.3",
|
|
"@testing-library/react": "^16.3.0",
|
|
"@types/node": "^22.5.5",
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"autoprefixer": "^10.4.21",
|
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
"eslint": "^9.9.0",
|
|
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
"eslint-plugin-react-refresh": "^0.4.9",
|
|
"globals": "^15.9.0",
|
|
"husky": "^9.1.7",
|
|
"jsdom": "^26.1.0",
|
|
"lint-staged": "^16.1.2",
|
|
"playwright": "^1.54.1",
|
|
"postcss": "^8.5.6",
|
|
"prettier": "^3.6.2",
|
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
"semantic-release": "^24.2.7",
|
|
"tailwindcss": "^3.4.11",
|
|
"typescript": "^5.5.3",
|
|
"typescript-eslint": "^8.0.1",
|
|
"vite": "^5.4.1",
|
|
"vitest": "^3.2.4"
|
|
}
|
|
}
|