-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.28 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.28 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
{
"name": "robotrumble-reborn-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run api-server\" \"npm run vite-dev\"",
"vite-dev": "vite",
"api-server": "node server/dev-server.js",
"build": "vite build",
"build-with-types": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"start": "vite preview"
},
"dependencies": {
"@babylonjs/core": "^8.8.5",
"@babylonjs/gui": "^8.8.5",
"@dimforge/rapier3d-compat": "^0.17.0",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mysten/dapp-kit": "^0.16.11",
"@mysten/enoki": "^0.6.19",
"@mysten/sui": "^1.32.0",
"@mysten/wallet-adapter-react": "^11.0.0",
"@mysten/wallet-adapter-sui-wallet": "^0.3.0",
"@mysten/wallet-adapter-unsafe-burner": "^0.10.0",
"@mysten/wallet-adapter-wallet-standard": "^0.8.0",
"@mysten/wallet-kit": "^0.8.6",
"@mysten/zklogin": "^0.8.1",
"@tanstack/react-query": "^5.77.0",
"@types/canvas-confetti": "^1.9.0",
"@types/react-router-dom": "^5.3.3",
"@types/webrtc": "^0.0.46",
"agora-rtc-sdk-ng": "^4.23.0",
"agora-rtm-sdk": "^2.2.2",
"agora-token": "^2.0.4",
"canvas-confetti": "^1.9.3",
"framer-motion": "^12.12.1",
"js-aruco": "^0.1.0",
"jwt-decode": "^4.0.0",
"node-fetch": "^3.3.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.6.0",
"socket.io-client": "^4.8.1",
"three": "^0.176.0",
"zod": "^3.25.63"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tailwindcss/forms": "^0.5.10",
"@types/node": "^22.15.19",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/three": "^0.176.0",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"express": "^5.1.0",
"globals": "^16.0.0",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-glsl": "^1.4.1"
}
}