| { | |
| "name": "crossword-frontend", | |
| "version": "1.0.0", | |
| "description": "React frontend for crossword puzzle generator", | |
| "private": true, | |
| "type": "module", | |
| "scripts": { | |
| "dev": "vite", | |
| "build": "vite build", | |
| "preview": "vite preview", | |
| "lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0", | |
| "lint:fix": "eslint . --ext js,jsx --fix", | |
| "format": "prettier --write \"src/**/*.{js,jsx,css,md}\"" | |
| }, | |
| "dependencies": { | |
| "chart.js": "^4.5.0", | |
| "chartjs-plugin-annotation": "^3.1.0", | |
| "react": "^18.2.0", | |
| "react-chartjs-2": "^5.3.0", | |
| "react-dom": "^18.2.0" | |
| }, | |
| "devDependencies": { | |
| "@types/react": "^18.2.43", | |
| "@types/react-dom": "^18.2.17", | |
| "@vitejs/plugin-react": "^4.2.1", | |
| "eslint": "^8.55.0", | |
| "eslint-plugin-react": "^7.33.2", | |
| "eslint-plugin-react-hooks": "^4.6.0", | |
| "eslint-plugin-react-refresh": "^0.4.5", | |
| "prettier": "^3.1.1", | |
| "vite": "^5.0.8" | |
| }, | |
| "browserslist": { | |
| "production": [ | |
| ">0.2%", | |
| "not dead", | |
| "not op_mini all" | |
| ], | |
| "development": [ | |
| "last 1 chrome version", | |
| "last 1 firefox version", | |
| "last 1 safari version" | |
| ] | |
| } | |
| } | |