- Update ESLint configuration with strict React/TypeScript rules - Enhance TypeScript configuration with stricter checks - Add comprehensive type definitions and exports - Update App.tsx with new routing and layout integration - Create showcase pages for component development - Improve package.json with proper dependencies Configuration ensures code quality and developer productivity with zero-tolerance for type errors and consistent code standards. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
86 lines
2.9 KiB
JSON
86 lines
2.9 KiB
JSON
{
|
|
"name": "bct-react-rebuild",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Black Canyon Tickets React Rebuild - Premium UI/UX with glassmorphism design",
|
|
"scripts": {
|
|
"dev": "vite --host 0.0.0.0",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
|
|
"lint:fix": "eslint . --fix",
|
|
"lint:check": "eslint . --report-unused-disable-directives",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"typecheck": "tsc --noEmit",
|
|
"quality": "npm run typecheck && npm run lint && npm run format:check",
|
|
"quality:fix": "npm run typecheck && npm run lint:fix && npm run format",
|
|
"test": "playwright test",
|
|
"test:ui": "playwright test --ui",
|
|
"test:headed": "playwright test --headed",
|
|
"test:qa": "tsx tests/test-runner.ts",
|
|
"test:qa:critical": "tsx tests/test-runner.ts --critical",
|
|
"test:qa:headed": "tsx tests/test-runner.ts --headed",
|
|
"test:smoke": "playwright test tests/smoke.spec.ts",
|
|
"test:auth": "playwright test tests/auth-realistic.spec.ts",
|
|
"test:auth:enhanced": "playwright test tests/auth.spec.ts",
|
|
"test:navigation": "playwright test tests/navigation.spec.ts",
|
|
"test:theme": "playwright test tests/theme.spec.ts",
|
|
"test:responsive": "playwright test tests/responsive.spec.ts",
|
|
"test:components": "playwright test tests/components.spec.ts"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^3.9.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"framer-motion": "^11.11.17",
|
|
"lucide-react": "^0.460.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "^7.53.2",
|
|
"react-router-dom": "^6.28.0",
|
|
"tailwind-merge": "^2.5.4",
|
|
"zod": "^3.23.8",
|
|
"zustand": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.54.2",
|
|
"@types/node": "^22.10.2",
|
|
"@types/react": "^18.3.12",
|
|
"@types/react-dom": "^18.3.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.39.1",
|
|
"@typescript-eslint/parser": "^8.39.1",
|
|
"@vitejs/plugin-react": "^4.3.3",
|
|
"autoprefixer": "^10.4.20",
|
|
"eslint": "^9.15.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-import-resolver-node": "^0.3.9",
|
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
"eslint-plugin-import": "^2.32.0",
|
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
"eslint-plugin-react-refresh": "^0.4.14",
|
|
"postcss": "^8.4.49",
|
|
"prettier": "^3.3.3",
|
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
"tailwindcss": "^3.4.14",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.6.3",
|
|
"typescript-eslint": "^8.39.1",
|
|
"vite": "^6.0.1"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"typescript",
|
|
"vite",
|
|
"tailwind",
|
|
"ticketing",
|
|
"glassmorphism"
|
|
],
|
|
"author": "Black Canyon Tickets",
|
|
"license": "MIT"
|
|
}
|