Update packages & cleanup (#4475)
This commit is contained in:
parent
f789e02096
commit
26acfd5102
4 changed files with 8054 additions and 4976 deletions
12890
webclient/package-lock.json
generated
12890
webclient/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -3,29 +3,32 @@
|
|||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@material-ui/core": "^4.11.4",
|
||||
"@material-ui/core": "^4.12.3",
|
||||
"@material-ui/icons": "^4.11.2",
|
||||
"@material-ui/styles": "^4.11.4",
|
||||
"crypto-js": "^4.1.1",
|
||||
"dexie": "^3.0.3",
|
||||
"jquery": "^3.4.1",
|
||||
"lodash": "^4.17.15",
|
||||
"jquery": "^3.6.0",
|
||||
"lodash": "^4.17.21",
|
||||
"prop-types": "^15.7.2",
|
||||
"protobufjs": "^6.8.8",
|
||||
"react": "^16.11.0",
|
||||
"react-dom": "^16.11.0",
|
||||
"react-redux": "^7.1.1",
|
||||
"react-router-dom": "^5.1.2",
|
||||
"react-scripts": "3.2.0",
|
||||
"react-virtualized-auto-sizer": "^1.0.2",
|
||||
"react-window": "^1.8.5",
|
||||
"redux": "^4.0.4",
|
||||
"redux-form": "^8.2.6",
|
||||
"redux-thunk": "^2.3.0",
|
||||
"typescript": "^4.3.5"
|
||||
"protobufjs": "^6.11.2",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-redux": "^7.2.6",
|
||||
"react-router-dom": "^5.3.0",
|
||||
"react-scripts": "4.0.3",
|
||||
"react-virtualized-auto-sizer": "^1.0.6",
|
||||
"react-window": "^1.8.6",
|
||||
"redux": "^4.1.2",
|
||||
"redux-form": "^8.3.7",
|
||||
"redux-thunk": "^2.4.0",
|
||||
"rxjs": "^7.4.0",
|
||||
"typescript": "^4.4.4"
|
||||
},
|
||||
"scripts": {
|
||||
"postinstall": "echo 'Copying shared files...' && ./copy_shared_files.sh",
|
||||
"postinstall": "run-script-os",
|
||||
"postinstall:windows": "powershell .\\copy_shared_files.ps1",
|
||||
"postinstall:default": "./copy_shared_files.sh",
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
|
@ -49,23 +52,23 @@
|
|||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jest": "24.0.20",
|
||||
"@types/jquery": "^3.3.31",
|
||||
"@types/lodash": "^4.14.145",
|
||||
"@types/material-ui": "^0.21.8",
|
||||
"@types/node": "12.11.7",
|
||||
"@types/prop-types": "^15.7.3",
|
||||
"@types/jest": "27.0.2",
|
||||
"@types/jquery": "^3.5.8",
|
||||
"@types/lodash": "^4.14.176",
|
||||
"@types/material-ui": "^0.21.12",
|
||||
"@types/node": "16.11.7",
|
||||
"@types/prop-types": "^15.7.4",
|
||||
"@types/protobufjs": "^6.0.0",
|
||||
"@types/react": "16.9.11",
|
||||
"@types/react-dom": "16.9.3",
|
||||
"@types/react-redux": "^7.1.5",
|
||||
"@types/react-router-dom": "^5.1.0",
|
||||
"@types/react-virtualized-auto-sizer": "^1.0.0",
|
||||
"@types/react-window": "^1.8.2",
|
||||
"@types/redux": "^3.6.0",
|
||||
"@types/redux-form": "^8.2.0",
|
||||
"@types/react": "17.0.34",
|
||||
"@types/react-dom": "17.0.11",
|
||||
"@types/react-redux": "^7.1.20",
|
||||
"@types/react-router-dom": "^5.3.2",
|
||||
"@types/react-virtualized-auto-sizer": "^1.0.1",
|
||||
"@types/react-window": "^1.8.5",
|
||||
"@types/redux-form": "^8.3.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.3.1",
|
||||
"@typescript-eslint/parser": "^5.3.1",
|
||||
"eslint": "^8.1.0"
|
||||
"eslint": "^7.32.0",
|
||||
"run-script-os": "^1.1.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { createMuiTheme } from '@material-ui/core';
|
||||
import { createTheme } from '@material-ui/core/styles';
|
||||
|
||||
const palette = {
|
||||
background: {
|
||||
|
@ -43,7 +43,7 @@ const palette = {
|
|||
},
|
||||
};
|
||||
|
||||
export const materialTheme = createMuiTheme({
|
||||
export const materialTheme = createTheme({
|
||||
palette,
|
||||
|
||||
overrides: {
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "react"
|
||||
"jsx": "react-jsx",
|
||||
"noFallthroughCasesInSwitch": false
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
|
|
Loading…
Reference in a new issue