🔧 Updated some packages and deps

This commit is contained in:
2023-02-27 21:33:34 -05:00
parent 45bcb4102d
commit 30ef01ff03
3 changed files with 3348 additions and 4456 deletions

View File

@@ -24,7 +24,6 @@
"@dnd-kit/sortable": "^5.0.0",
"@dnd-kit/utilities": "^3.2.0",
"@fortawesome/fontawesome-free": "^6.1.1",
"@parcel/config-default": "^2.6.0",
"@redux-devtools/extension": "^3.2.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@tanstack/react-table": "^8.5.11",
@@ -60,11 +59,11 @@
"react": "^18.2.0",
"react-collapsible": "^2.9.0",
"react-comic-viewer": "^0.4.0",
"react-day-picker": "^8.0.6",
"react-day-picker": "^8.6.0",
"react-dom": "^18.1.0",
"react-fast-compare": "^3.2.0",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.3",
"react-final-form-arrays": "^3.1.4",
"react-loader-spinner": "^4.0.0",
"react-masonry-css": "^1.0.16",
"react-modal": "^3.15.1",
@@ -72,15 +71,15 @@
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"react-select": "^5.3.2",
"react-select-async-paginate": "^0.6.1",
"react-select-async-paginate": "^0.7.2",
"react-slick": "^0.29.0",
"react-sliding-pane": "^7.1.0",
"react-stickynode": "^4.0.0",
"react-stickynode": "^4.1.0",
"react-textarea-autosize": "^8.3.4",
"reapop": "^4.0.5",
"redux-first-history": "^5.0.9",
"reapop": "^4.2.1",
"redux-first-history": "^5.1.1",
"redux-socket.io-middleware": "^1.0.4",
"redux-thunk": "^2.4.1",
"redux-thunk": "^2.4.2",
"slick-carousel": "^1.8.1",
"socket.io-client": "^4.3.2",
"styled-components": "^5.3.5",
@@ -96,18 +95,10 @@
"@babel/core": "^7.13.10",
"@babel/plugin-syntax-top-level-await": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.13.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack4": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack4": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@tsconfig/node14": "^1.0.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.20",
@@ -144,8 +135,5 @@
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"vite": "^4.1.1"
},
"resolutions": {
"@storybook/react/webpack": "^5"
}
}

View File

@@ -1,21 +1,22 @@
import react from '@vitejs/plugin-react';
import react from "@vitejs/plugin-react";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import { defineConfig } from 'vite';
import { defineConfig } from "vite";
export default defineConfig({
// publicDir: './public',
// publicDir: "./public",
build: "esnext",
base: "/",
plugins: [
nodeResolve({
// browser: true
exportConditions: ['node'],
exportConditions: ["node"],
}),
react({
// Use React plugin in all *.jsx and *.tsx files
include: '**/*.{jsx,tsx}',
include: "**/*.{jsx,tsx}",
babel: {
plugins: ['babel-plugin-styled-components'],
plugins: ["babel-plugin-styled-components"],
},
}),
],
});
});

7759
yarn.lock

File diff suppressed because it is too large Load Diff