mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
Package upgrades/stable releases
This commit is contained in:
46
package.json
46
package.json
@@ -30,42 +30,42 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@monaco-editor/react": "^4.3.1",
|
||||
"@panzoom/panzoom": "^4.4.1",
|
||||
"@panzoom/panzoom": "^4.4.2",
|
||||
"fflate": "^0.7.1",
|
||||
"framer-motion": "^4.1.17",
|
||||
"html-to-image": "^1.9.0",
|
||||
"ini": "^2.0.0",
|
||||
"music-metadata-browser": "^2.5.0",
|
||||
"next": "^11.1.3-canary.54",
|
||||
"next": "^11.1.2",
|
||||
"polished": "^4.1.3",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2",
|
||||
"react-rnd": "^10.3.5",
|
||||
"styled-components": "^5.3.1"
|
||||
"styled-components": "^5.3.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@next/eslint-plugin-next": "^11.1.3-canary.54",
|
||||
"@next/eslint-plugin-next": "^11.1.2",
|
||||
"@testing-library/jest-dom": "^5.14.1",
|
||||
"@testing-library/react": "^12.1.2",
|
||||
"@types/ini": "^1.3.31",
|
||||
"@types/jest": "^27.0.2",
|
||||
"@types/node": "^16.10.3",
|
||||
"@types/react": "^17.0.27",
|
||||
"@types/node": "^16.11.4",
|
||||
"@types/react": "^17.0.31",
|
||||
"@types/styled-components": "^5.1.15",
|
||||
"@types/video.js": "^7.3.27",
|
||||
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
||||
"@typescript-eslint/parser": "^4.33.0",
|
||||
"babel-plugin-styled-components": "^1.13.2",
|
||||
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
||||
"@typescript-eslint/parser": "^5.1.0",
|
||||
"babel-plugin-styled-components": "^1.13.3",
|
||||
"browserfs": "https://github.com/jvilk/BrowserFS.git",
|
||||
"emulators": "^0.72.0",
|
||||
"emulators-ui": "^0.71.7",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint": "7.32.0",
|
||||
"eslint-config-airbnb": "^18.2.1",
|
||||
"eslint-config-next": "^11.1.3-canary.54",
|
||||
"eslint-config-next": "^11.1.2",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-import-resolver-typescript": "^2.5.0",
|
||||
"eslint-plugin-import": "^2.24.2",
|
||||
"eslint-plugin-jest": "^24.6.0",
|
||||
"eslint-plugin-import": "^2.25.2",
|
||||
"eslint-plugin-jest": "^25.2.2",
|
||||
"eslint-plugin-jest-dom": "^3.9.2",
|
||||
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
@@ -75,20 +75,20 @@
|
||||
"eslint-plugin-sonarjs": "^0.10.0",
|
||||
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
||||
"eslint-plugin-testing-library": "^4.12.4",
|
||||
"eslint-plugin-unicorn": "^36.0.0",
|
||||
"husky": "^7.0.2",
|
||||
"jest": "^27.2.5",
|
||||
"eslint-plugin-unicorn": "^37.0.1",
|
||||
"husky": "^7.0.4",
|
||||
"jest": "^27.3.1",
|
||||
"jsdom-worker": "^0.2.1",
|
||||
"lint-staged": "^11.2.2",
|
||||
"monaco-editor": "^0.29.0",
|
||||
"lint-staged": "^11.2.4",
|
||||
"monaco-editor": "^0.29.1",
|
||||
"prettier": "^2.4.1",
|
||||
"stylelint": "^13.13.1",
|
||||
"stylelint-config-prettier": "^8.0.2",
|
||||
"stylelint": "13.13.1",
|
||||
"stylelint-config-prettier": "^9.0.3",
|
||||
"stylelint-config-sass-guidelines": "^8.0.0",
|
||||
"stylelint-config-standard": "^22.0.0",
|
||||
"stylelint-config-standard": "^23.0.0",
|
||||
"stylelint-config-styled-components": "^0.1.1",
|
||||
"tinymce": "^5.9.2",
|
||||
"typescript": "^4.4.3",
|
||||
"tinymce": "^5.10.0",
|
||||
"typescript": "^4.4.4",
|
||||
"webamp": "^1.5.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* eslint-disable @next/next/no-document-import-in-page */
|
||||
import type { DocumentContext, DocumentInitialProps } from "next/document";
|
||||
import Document, { Head, Html, Main, NextScript } from "next/document";
|
||||
import { ServerStyleSheet } from "styled-components";
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { useEffect, useState } from "react";
|
||||
|
||||
const useWorker = <T extends unknown>(
|
||||
const useWorker = <T>(
|
||||
workerFunction: () => void,
|
||||
onMessage: (message: { data: T }) => void
|
||||
): void => {
|
||||
|
||||
Reference in New Issue
Block a user