1
0
mirror of https://github.com/lexogrine/dota2-react-hud.git synced 2025-12-10 01:52:49 +01:00

updated react

This commit is contained in:
Hubert Walczak 2023-05-16 14:18:16 +02:00
parent 34fe3ab977
commit a475763d62
No known key found for this signature in database
GPG Key ID: 17BB1C9355357860
5 changed files with 23487 additions and 34548 deletions

38216
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,17 +6,18 @@
"dependencies": { "dependencies": {
"@craco/craco": "^5.7.0", "@craco/craco": "^5.7.0",
"@types/jest": "24.0.19", "@types/jest": "24.0.19",
"@types/node": "12.11.1", "@types/node": "18.15.11",
"@types/react": "16.9.9", "@types/react": "18.0.35",
"@types/react-dom": "16.9.2", "@types/react-dom": "18.0.11",
"dotagsi": "^1.1.3", "dotagsi": "^1.1.3",
"buffer": "^6.0.3",
"query-string": "^6.12.1", "query-string": "^6.12.1",
"react": "^16.13.1", "react": "^18.2.0",
"react-dom": "^16.13.1", "react-dom": "^18.2.0",
"react-scripts": "4.0.0", "react-scripts": "5.0.1",
"simple-peer": "^9.11.0", "simple-peer": "^9.11.0",
"socket.io-client": "^4.1.3", "socket.io-client": "^4.1.3",
"typescript": "3.6.4", "typescript": "^4.9.5",
"uuid": "^8.3.2" "uuid": "^8.3.2"
}, },
"license": "GPL-3.0", "license": "GPL-3.0",

View File

@ -3,7 +3,7 @@ import Layout from './HUD/Layout/Layout';
import api, { port, isDev } from './api/api'; import api, { port, isDev } from './api/api';
import ActionManager, { ConfigManager } from './api/actionManager'; import ActionManager, { ConfigManager } from './api/actionManager';
import { Dota2, DOTA2GSI, PlayerExtension } from 'dotagsi'; import { Dota2, DOTA2GSI, PlayerExtension } from 'dotagsi';
import { io } from "socket.io-client"; import io from "socket.io-client";
import { loadAvatarURL } from './api/avatars'; import { loadAvatarURL } from './api/avatars';
import { Match } from './api/interfaces'; import { Match } from './api/interfaces';
import "./HUD/GameHUD/gamehud.scss"; import "./HUD/GameHUD/gamehud.scss";

View File

@ -1,11 +1,9 @@
import React from "react"; import React from "react";
import ReactDOM from "react-dom";
import "./index.css"; import "./index.css";
import "./fonts/rajdhani.css"; import "./fonts/rajdhani.css";
import App from "./App"; import App from "./App";
import { createRoot } from 'react-dom/client';
ReactDOM.render(<App />, document.getElementById("root")); const container = document.getElementById('root');
const root = createRoot(container!); // createRoot(container!) if you use TypeScript
// If you want your app to work offline and load faster, you can change root.render(<App />);
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA

19716
yarn.lock

File diff suppressed because it is too large Load Diff