-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "@mario-pb/rufloui",
"version": "0.3.45",
"description": "React 19 dashboard for claude-flow v3 multi-agent orchestration",
"repository": {
"type": "git",
"url": "https://github.com/Mario-PB/rufloui.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"license": "MIT",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "vite",
"dev:backend": "tsx watch src/backend/server.ts",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"lint": "eslint src/"
},
"dependencies": {
"@claude-flow/cli": "^3.5.15",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"concurrently": "^9.1.0",
"cors": "^2.8.5",
"driver.js": "^1.4.0",
"express": "^4.21.0",
"lucide-react": "^0.468.0",
"node-telegram-bot-api": "^0.67.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.0",
"recharts": "^2.15.0",
"three": "^0.183.2",
"ws": "^8.18.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/cors": "^2.8.0",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/node-telegram-bot-api": "^0.64.14",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^9.0.0",
"jsdom": "^28.1.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
}
}