-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pypnm-webui",
"version": "0.2.13",
"private": true,
"type": "module",
"bin": {
"pypnm-webui": "./tools/cli/pypnm-webui.js"
},
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite",
"serve": "node ./tools/cli/pypnm-webui.js serve",
"build": "tsc -b && vite build",
"docs:build": ".venv/bin/python -m mkdocs build --strict",
"docs:serve": ".venv/bin/python -m mkdocs serve",
"preview": "vite preview",
"test": "vitest run",
"test:integration": "vitest run tests/livePyPnmHealth.integration.test.ts",
"test:watch": "vitest",
"lint": "eslint ."
},
"dependencies": {
"@hookform/resolvers": "^5.2.1",
"@tanstack/react-query": "^5.89.0",
"@tanstack/react-table": "^8.21.3",
"axios": "^1.11.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.62.0",
"react-router-dom": "^7.8.2",
"recharts": "^3.2.1",
"yaml": "^2.8.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/node": "^22.18.8",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.34.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^27.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}