-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ml-log-analyzer",
"description": "A powerful tool for analyzing and visualizing loss functions and gradient norms in machine learning training logs",
"private": true,
"version": "1.0.0",
"type": "module",
"homepage": "https://log.javazero.top",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run --coverage",
"test:stress": "node scripts/stress-test.js"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.10",
"autoprefixer": "^10.4.21",
"chart.js": "^4.5.0",
"chartjs-plugin-zoom": "^2.2.0",
"i18next": "^25.4.2",
"lucide-react": "^0.522.0",
"postcss": "^8.5.6",
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.7.2",
"tailwindcss": "^3.4.4"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"jsdom": "^24.0.0",
"vite": "^6.3.5",
"vitest": "^1.4.0"
}
}