-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.96 KB
/
package.json
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
59
{
"name": "vector-visualizer",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"install-python-deps": "python -m pip install -r src/electron/scripts/requirements.txt",
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && cross-env NODE_ENV=development electron .",
"build": "tsc && vite build",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:mac": "npm run transpile:electron && npm run build && electron-builder --mac --arm64",
"dist:win": "npm run transpile:electron && npm run build && electron-builder --win --x64",
"dist:linux": "npm run transpile:electron && npm run build && electron-builder --linux --x64",
"test:e2e": "playwright test",
"test:unit": "vitest src"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"electron-log": "^5.2.4",
"electron-store": "^10.0.0",
"jstat": "^1.9.6",
"os-utils": "^0.0.14",
"pg": "^8.13.1",
"plotly.js": "^2.35.2",
"python-shell": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-plotly.js": "^2.6.0",
"react-router-dom": "^7.0.1",
"recharts": "^2.13.3",
"simple-statistics": "^7.8.7"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@types/node": "^22.5.5",
"@types/os-utils": "^0.0.4",
"@types/pg": "^8.11.10",
"@types/python-shell": "^1.0.3",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/react-plotly.js": "^2.6.3",
"@vitejs/plugin-react": "^4.3.3",
"cross-env": "^7.0.3",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^5.4.7",
"vitest": "^2.1.5"
}
}