-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "cuboid",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node --env-file=.env scripts/dev.cjs",
"dev:frontend": "vite",
"build": "vite build",
"test": "vitest",
"build:backend": "tsc -p backend/tsconfig.json",
"start:backend": "node --env-file=.env backend/dist/server.js",
"dev:backend": "npm run build:backend && npm run start:backend",
"configure:nvidia": "node --env-file=.env backend/scripts/configure_nvidia.mjs"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"katex": "^0.16.28",
"lucide-react": "^0.563.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-katex": "^3.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"texlive": "^1.2.0",
"y-protocols": "^1.0.7",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.29",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.3.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/webrtc": "^0.0.47",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.23",
"jsdom": "^28.0.0",
"playwright": "^1.58.1",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vitest": "^1.0.4"
}
}