update dependencies

This commit is contained in:
Daniel 2021-11-04 11:35:29 -04:00
parent 53beb76ba0
commit a9853a0eba
3 changed files with 1798 additions and 2691 deletions

4410
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -16,10 +16,11 @@
"author": "Danude Sandstorm",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@loadable/component": "^5.15.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"lokijs": "^1.5.12",
"mobx": "^5.15.7",
"mobx-react": "^6.3.1",
@ -39,57 +40,57 @@
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-dynamic-import": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.0",
"@babel/plugin-proposal-dynamic-import": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-computed-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/plugin-transform-computed-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.4",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^8.2.3",
"@types/react": "^16.14.15",
"@types/react": "^16.14.20",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.3.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.1.1",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fsevents": "^2.3.2",
"ignore-styles": "^5.0.1",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^2.3.0",
"mini-css-extract-plugin": "^2.4.4",
"mocha": "^8.4.0",
"postcss": "^8.3.7",
"sass": "^1.42.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.3.0",
"postcss": "^8.3.11",
"sass": "^1.43.4",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.2.4",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
},
"browser": {

View File

@ -7,7 +7,9 @@
// Process & infer types from .js files.
"allowJs": true,
// Support jsx in .tsx files (https://www.typescriptlang.org/docs/handbook/jsx.html)
"jsx": "preserve",
"jsx": "react",
// Specifies module code generation
"module": "esnext",
// Don't emit; allow Babel to transform files.
"noEmit": true,
// Enable strictest settings like strictNullChecks & noImplicitAny.
@ -31,7 +33,7 @@
"resolveJsonModule": true,
// Library files to be used in the project.
// Tells the compiler that "DOM-APIs" and new ECMAScript features are valid.
"lib": ["dom", "esnext"],
"lib": ["dom", "dom.iterable", "esnext"],
// Allows @decorators
"experimentalDecorators": true,
// List of folders to include type definitions from.