|
7 | 7 | "build": "next build", |
8 | 8 | "start": "NODE_ENV=production node server.js", |
9 | 9 | "lint": "next lint", |
| 10 | + "lint:fix": "next lint --fix", |
| 11 | + "format": "prettier --write .", |
| 12 | + "format:check": "prettier --check .", |
10 | 13 | "type-check": "tsc --noEmit", |
11 | | - "check-all": "npm run type-check && npm run lint && npm run build" |
| 14 | + "check-all": "npm run type-check && npm run lint && npm run format:check && npm run build" |
12 | 15 | }, |
13 | 16 | "dependencies": { |
14 | 17 | "@ant-design/icons": "^6.0.0", |
|
61 | 64 | "katex": "^0.16.11", |
62 | 65 | "lucide-react": "^0.454.0", |
63 | 66 | "mermaid": "^11.12.0", |
64 | | - "next": "15.5.7", |
| 67 | + "next": "^15.5.9", |
65 | 68 | "next-i18next": "^15.4.2", |
66 | 69 | "next-themes": "^0.4.4", |
67 | 70 | "react": "18.2.0", |
|
75 | 78 | "react-markdown": "^8.0.7", |
76 | 79 | "react-organizational-chart": "^2.2.1", |
77 | 80 | "react-resizable-panels": "^2.1.7", |
78 | | - "react-syntax-highlighter": "^15.5.0", |
| 81 | + "react-syntax-highlighter": "^16.1.0", |
79 | 82 | "reactflow": "^11.11.4", |
80 | 83 | "recharts": "2.15.0", |
81 | 84 | "rehype-katex": "^6.0.3", |
|
98 | 101 | "@types/react-dom": "18.3.6", |
99 | 102 | "eslint": "^9.34.0", |
100 | 103 | "eslint-config-next": "15.5.7", |
| 104 | + "eslint-config-prettier": "^9.1.0", |
| 105 | + "eslint-plugin-prettier": "^5.1.3", |
101 | 106 | "postcss": "^8", |
| 107 | + "prettier": "^3.2.5", |
102 | 108 | "tailwindcss": "^3.4.17", |
103 | 109 | "typescript": "5.8.3" |
104 | 110 | } |
|
0 commit comments