-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.09 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
60
61
62
63
64
65
66
67
{
"name": "qutip-virtual-lab",
"private": true,
"version": "0.0.0",
"main": "main.jsx",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"build:dockerimage": "sudo docker build -t qutip-virtual-lab .",
"copy_runtime": "./copy_runtime.sh",
"patch_runtime": "node ./patch_pyjs.js",
"build:runtime": "npm run build:dockerimage && npm run copy_runtime && npm run patch_runtime",
"build:with_docker": "npm run build:runtime && npm run build",
"start:with_docker": "npm run build:with_docker && npm run start"
},
"dependencies": {
"@compai/font-noto-sans-math": "^0.0.1",
"@compai/font-recursive": "^0.0.4",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@react-three/drei": "^9.77.3",
"@react-three/fiber": "^8.13.3",
"@types/three": "^0.152.1",
"@visx/axis": "^3.1.0",
"@visx/brush": "^3.0.1",
"@visx/curve": "^3.0.0",
"@visx/event": "^3.0.1",
"@visx/group": "^3.0.0",
"@visx/legend": "^3.0.0",
"@visx/responsive": "^3.3.0",
"@visx/scale": "^3.0.0",
"@visx/shape": "^3.0.0",
"@visx/tooltip": "^3.1.2",
"cli-real-favicon": "^0.0.8",
"konva": "^9.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-full-screen": "^1.1.1",
"react-katex": "^3.0.1",
"react-konva": "^18.2.9",
"request": "2.79.0",
"three": "^0.153.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@tsconfig/vite-react": "^2.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.1",
"babel-loader": "^9.1.2",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"file-loader": "^6.2.0",
"prettier": "^2.8.8",
"process": "^0.11.10",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-html": "^3.2.0"
}
}