punimtag/admin-frontend/package.json
Tanya df7053dbd4
Some checks failed
CI / skip-ci-check (pull_request) Successful in 1m34s
CI / lint-and-type-check (pull_request) Failing after 2m17s
CI / python-lint (pull_request) Failing after 2m0s
CI / test-backend (pull_request) Successful in 3m42s
CI / build (pull_request) Successful in 4m42s
CI / secret-scanning (pull_request) Successful in 1m42s
CI / dependency-scan (pull_request) Successful in 1m41s
CI / sast-scan (pull_request) Successful in 2m44s
CI / workflow-summary (pull_request) Failing after 1m34s
chore: Replace ESLint configuration file with new format and update dependencies
This commit removes the old ESLint configuration file and introduces a new configuration file in ES module format. It also updates several ESLint-related dependencies to their latest versions, ensuring improved linting capabilities and compatibility with the current codebase. Additionally, the linting command in package.json has been simplified for better usability.
2026-01-12 14:42:45 -05:00

39 lines
1019 B
JSON

{
"name": "punimtag-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0"
},
"dependencies": {
"@tanstack/react-query": "^5.8.4",
"axios": "^1.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.30.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.4",
"globals": "^17.0.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1"
}
}