-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "sims-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-debug": "vite --debug",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"preview-debug": "vite preview --debug",
"serve-dist-python": "python -m http.server 5173 -d dist/",
"serve-prod-python": "python -m http.server 5173 -d prod/",
"deploy": "rsync -avh --delete dist/ [email protected]:/usr/local/apache/htdocs-cells/sims/",
"netron": "netron public/models/default.onnx"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.2.1",
"@mui/x-data-grid": "^7.23.3",
"d3": "^7.9.0",
"d3-sankey": "^0.12.3",
"h5wasm": "^0.7.8",
"idb": "^8.0.1",
"mui-file-input": "^6.0.0",
"onnxruntime-web": "^1.20.1",
"prando": "^6.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"umap-js": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"gh-pages": "^6.2.0",
"globals": "^15.14.0",
"vite": "^6.0.3",
"vite-plugin-static-copy": "^2.2.0"
}
}