Files
David Winings 116a60e404 Incremental + Batched frontend state updates (#888)
* Update JS package versions.

* Forgot to remove a debugging log statement.

* Figured out the peerDependency npm issues... react-scripts thought it needed an old version of typescript, which we don't even need.

* Re-work state broadcasting mechanism to prevent excessive data transmission.

* Tidy up delta parsing, handle failure to serialize state diffs.

* Apply diffs in batches and use immer to apply them in a simple way.

* Update frontend build.

* Update stale docstrings.

* Rebuild frontend.

* Delete a file that wasn't being used.
2025-09-19 20:26:19 -04:00

55 lines
1.2 KiB
JSON

{
"name": "stage_strike_app",
"version": "0.1.0",
"private": true,
"homepage": "/stage_strike_app/build/",
"dependencies": {
"@emotion/react": "^11.4.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@mui/system": "^7.3.2",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"immer": "^10.1.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.1",
"react-scripts": "^5.0.1",
"socket.io-client": "^4.8.1",
"web-vitals": "^5.1.0"
},
"overrides": {
"react-scripts": {
"typescript": "^5"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}