|
9 | 9 | "preview": "vite preview", |
10 | 10 | "analyze": "ANALYZE=true pnpm build", |
11 | 11 | "test": "vitest", |
12 | | - "both": "concurrently \"pnpm run preview\" \"cd services/private-link-proxy && pnpm start\"" |
| 12 | + "both": "concurrently \"pnpm run preview\" \"cd services/private-link-proxy && pnpm start\"", |
| 13 | + "lint": "eslint \"{src,services}/**/*.{ts,tsx}\"", |
| 14 | + "lint:fix": "pnpm lint -- --fix", |
| 15 | + "format": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,md}\"", |
| 16 | + "format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,md}\"" |
13 | 17 | }, |
14 | 18 | "dependencies": { |
15 | 19 | "@nostr-dev-kit/ndk": "^2.9.1", |
|
26 | 30 | "react-window": "^1.8.9" |
27 | 31 | }, |
28 | 32 | "devDependencies": { |
| 33 | + "@eslint/js": "^9.38.0", |
29 | 34 | "@testing-library/jest-dom": "^6.4.6", |
30 | 35 | "@testing-library/react": "^14.2.1", |
31 | 36 | "@testing-library/user-event": "^14.5.2", |
32 | 37 | "@types/react": "^18.2.0", |
33 | 38 | "@types/react-dom": "^18.2.0", |
| 39 | + "@typescript-eslint/eslint-plugin": "^8.46.2", |
| 40 | + "@typescript-eslint/parser": "^8.46.2", |
34 | 41 | "@vitejs/plugin-react": "^5.0.2", |
35 | 42 | "autoprefixer": "^10.4.19", |
36 | 43 | "concurrently": "^9.2.1", |
| 44 | + "eslint": "^9.38.0", |
| 45 | + "eslint-config-prettier": "^10.1.8", |
| 46 | + "eslint-plugin-jsx-a11y": "^6.10.2", |
| 47 | + "eslint-plugin-prettier": "^5.5.4", |
| 48 | + "eslint-plugin-react": "^7.37.5", |
| 49 | + "eslint-plugin-react-hooks": "^7.0.0", |
| 50 | + "globals": "^16.4.0", |
37 | 51 | "postcss": "^8.4.39", |
| 52 | + "prettier": "^3.6.2", |
38 | 53 | "rollup-plugin-visualizer": "^5.12.0", |
39 | 54 | "tailwindcss": "^3.4.10", |
40 | 55 | "typescript": "^5.5.4", |
| 56 | + "typescript-eslint": "^8.46.2", |
41 | 57 | "vite": "^5.4.0", |
42 | 58 | "vitest": "^1.6.0" |
43 | 59 | }, |
|
0 commit comments