-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.72 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "astrolabe",
"version": "0.3.0",
"description": "Astrolabe: Math Knowledge Network",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tauri": "tauri",
"backend": "cd backend && .venv/bin/python -m uvicorn astrolabe_app.server:app --host 127.0.0.1 --port 8765 --reload",
"backend:win": "cd backend && .venv\\Scripts\\python -m uvicorn astrolabe_app.server:app --host 127.0.0.1 --port 8765",
"dev:all:win": "concurrently \"npm run backend:win\" \"npm run tauri dev\"",
"dev:all": "concurrently --kill-others --kill-signal SIGKILL \"npm run backend\" \"npm run tauri dev\"",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/stix-two-text": "^5.2.8",
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.7.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@sigma/edge-curve": "^3.1.0",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-http": "^2.5.4",
"@tauri-apps/plugin-shell": "^2.3.3",
"@types/d3": "^7.4.3",
"@types/three": "^0.182.0",
"@xterm/addon-fit": "^0.11.0",
"bitecs": "^0.4.0",
"d3": "^7.9.0",
"dagre": "^0.8.5",
"elkjs": "^0.11.0",
"graphology": "^0.26.0",
"graphology-layout-forceatlas2": "^0.10.1",
"immer": "^11.1.3",
"katex": "^0.16.27",
"monaco-editor": "^0.55.1",
"next": "^15.5.10",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.0.23",
"reactflow": "^11.11.4",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sigma": "^3.0.2",
"three": "^0.170.0",
"web-worker": "^1.5.0",
"xterm": "^5.3.0",
"zundo": "^2.3.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/dagre": "^0.7.53",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.0",
"concurrently": "^9.2.1",
"jsdom": "^26.1.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"optionalDependencies": {
"@next/swc-darwin-arm64": "npm:null@*"
}
}