updated dependencies

This commit is contained in:
Daniel 2021-08-16 11:08:03 -04:00
parent 0e95257916
commit d87403032b
7 changed files with 649 additions and 2410 deletions

3016
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,7 @@
"react-collapsible": "^2.8.3",
"react-digit-input": "^2.1.0",
"react-dom": "^16.14.0",
"react-interactive": "^0.9.5",
"react-interactive": "^1.1.2",
"react-loadable": "^5.5.0",
"react-onclickoutside": "^6.11.2",
"react-process-string": "^1.2.0",
@ -53,43 +53,43 @@
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.14.5",
"@babel/runtime": "^7.14.8",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.3",
"@types/chai": "^4.2.21",
"@types/mocha": "^8.2.3",
"@types/react": "^16.14.11",
"@types/react": "^16.14.13",
"@types/react-dom": "^16.9.14",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^1.3.0",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.32.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fsevents": "^2.3.2",
"ignore-styles": "^5.0.1",
"jsdom": "^16.7.0",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^1.6.2",
"mini-css-extract-plugin": "^2.2.0",
"mocha": "^8.4.0",
"postcss": "^8.3.6",
"sass": "^1.37.5",
"sass-loader": "^11.1.1",
"style-loader": "^2.0.0",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"ts-node": "^9.1.1",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
},
"browser": {

View File

@ -1,6 +1,6 @@
import React, { useEffect, useState } from 'react';
import { Link } from 'react-router-dom';
import Interactive from 'react-interactive';
import { Interactive } from 'react-interactive';
import API from '../SpreadsheetData';
import { Loading } from '../Snippets';
import style from '../../styles/style';

View File

@ -1,6 +1,6 @@
import React, { useState, useEffect } from 'react';
import { Link } from 'react-router-dom';
import Interactive from 'react-interactive';
import { Interactive } from 'react-interactive';
import { setupDB, generate, blankCard } from "./generate";
import API from '../SpreadsheetData';
import { Loading } from '../Snippets';

View File

@ -1 +0,0 @@
declare module 'react-interactive';

View File

@ -1,5 +1,5 @@
import React from 'react';
import Interactive from 'react-interactive';
import { Interactive } from 'react-interactive';
import { Link } from 'react-router-dom';
import s from '../../../styles/app.style';

View File

@ -1,5 +1,5 @@
import React from 'react';
import Interactive from 'react-interactive';
import { Interactive } from 'react-interactive';
import { Link } from 'react-router-dom';
import API from '../../SpreadsheetData';
import s from '../../../styles/app.style';