-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.16 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
{
"name": "solavin",
"private": true,
"version": "4.0.0",
"type": "module",
"description": "Solavin — a status-aware photovoltaic I-V analysis and visualization suite with tested extraction, data-quality flags, and reproducible exports.",
"author": "John Myron Uy",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:standalone": "vite build --config vite.standalone.config.js",
"build:all": "npm run build && npm run build:standalone",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "npm run build:standalone && node tests/e2e.smoke.mjs",
"validate": "npm audit --audit-level=high && npm run test:coverage && npm run build:all"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"read-excel-file": "^9.3.5",
"recharts": "^3.10.1",
"write-excel-file": "^4.1.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"playwright": "^1.62.0",
"vite": "^8.1.5",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.10"
}
}