Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #693

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion .eslintrc.js
Expand Up @@ -33,14 +33,20 @@ module.exports = {
'no-unused-vars': 'off',
'no-console': 'off',
'react/prop-types': 0,
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/no-unused-vars': 'off', // Use Typescript own check for this
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-extra-non-null-assertion': 'off',
'@typescript-eslint/no-extra-semi': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-non-null-asserted-optional-chain': 'off',
'@typescript-eslint/array-type': ['error', { default: 'array-simple', readonly: 'array-simple' }],
'@typescript-eslint/no-unused-expressions': ['error', { allowShortCircuit: true, allowTernary: true }],
'@typescript-eslint/prefer-as-const': 'off',
'no-unused-expressions': 'off',
'prettier/prettier': 'error',
'require-jsdoc': 1,
Expand Down
36 changes: 18 additions & 18 deletions apps/sensenet/package.json
Expand Up @@ -29,36 +29,36 @@
"devDependencies": {
"@relative-ci/agent": "^1.2.0",
"@types/autosuggest-highlight": "^3.1.0",
"@types/react": "^16.9.23",
"@types/react-autosuggest": "^9.3.13",
"@types/react-dom": "^16.9.5",
"@types/react": "^16.9.35",
"@types/react-autosuggest": "^9.3.14",
"@types/react-dom": "^16.9.8",
"@types/react-responsive": "^8.0.2",
"@types/react-router": "^5.1.2",
"@types/react-router-dom": "^5.1.2",
"@types/react-virtualized": "^9.21.8",
"@types/uuid": "^7.0.0",
"@types/react-virtualized": "^9.21.10",
"@types/uuid": "^8.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.4.1",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^4.0.5",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"html-webpack-plugin": "^4.0.4",
"mini-css-extract-plugin": "^0.9.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^3.0.1",
"ts-loader": "^7.0.3",
"terser-webpack-plugin": "^3.0.3",
"ts-loader": "^7.0.5",
"url-loader": "^4.0.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@sensenet/authentication-oidc-react": "^1.0.1",
"@sensenet/client-core": "^3.0.1",
Expand All @@ -73,19 +73,19 @@
"@sensenet/query": "^1.1.14",
"@sensenet/repository-events": "^1.4.15",
"autosuggest-highlight": "^3.1.1",
"clsx": "^1.1.0",
"clsx": "^1.1.1",
"filesize": "^6.1.0",
"moment": "^2.24.0",
"moment": "^2.26.0",
"monaco-editor": "0.19.0",
"react": "^16.13.0",
"react-autosuggest": "^10.0.0",
"react-dom": "^16.13.0",
"react-markdown": "^4.2.2",
"react-monaco-editor": "0.34.0",
"react-responsive": "^8.0.3",
"react-responsive": "^8.1.0",
"react-virtualized": "^9.21.2",
"semaphore-async-await": "^1.5.1",
"uuid": "^8.0.0"
"uuid": "^8.1.0"
},
"typings": "./dist/index.d.ts"
}
1 change: 0 additions & 1 deletion apps/sensenet/src/services/auth-config.ts
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import { UserManagerSettings } from '@sensenet/authentication-oidc-react'
import { applicationPaths } from '../application-paths'
import { pathWithQueryParams } from '.'
Expand Down
10 changes: 6 additions & 4 deletions apps/sensenet/webpack.prod.js
Expand Up @@ -53,10 +53,12 @@ module.exports = merge(common, {
minifyURLs: true,
},
}),
new CopyPlugin([
{ from: path.resolve(`${__dirname}/_redirects`), to: path.resolve(`${__dirname}/build`) },
{ from: path.resolve(`${__dirname}/web.config`), to: path.resolve(`${__dirname}/build`) },
]),
new CopyPlugin({
patterns: [
{ from: path.resolve(`${__dirname}/_redirects`), to: path.resolve(`${__dirname}/build`) },
{ from: path.resolve(`${__dirname}/web.config`), to: path.resolve(`${__dirname}/build`) },
],
}),
new RelativeCiAgentWebpackPlugin({
enabled: process.env.GITHUB_ACTIONS, // Run this only under GitHub Actions
}),
Expand Down
32 changes: 16 additions & 16 deletions examples/sn-dms-demo/package.json
Expand Up @@ -29,7 +29,7 @@
"fix:prettier": "prettier \"{,!(dist|temp|bundle)/**/}*.{ts,tsx}\" --write"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@sensenet/client-core": "^3.0.1",
"@sensenet/client-utils": "^1.8.3",
Expand All @@ -45,7 +45,7 @@
"@sensenet/search-react": "^1.2.19",
"history": "^4.10.1",
"lodash.groupby": "^4.6.0",
"moment": "^2.24.0",
"moment": "^2.26.0",
"object-assign": "4.1.1",
"oidc-client": "^1.10.1",
"promise": "^8.1.0",
Expand All @@ -55,32 +55,32 @@
"react-loadable": "^5.5.0",
"react-moment": "^0.9.6",
"react-redux": "^7.2.0",
"react-responsive": "^8.0.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-responsive": "^8.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.4",
"redux-di-middleware": "^4.1.0",
"redux-oidc": "^4.0.0-beta1",
"semaphore-async-await": "^1.5.1",
"uuid": "^8.0.0"
"uuid": "^8.1.0"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "^5.1.1",
"@types/chance": "^1.0.9",
"@types/jest": "^25.1.4",
"@cypress/webpack-preprocessor": "^5.4.1",
"@types/chance": "^1.1.0",
"@types/jest": "^25.2.3",
"@types/lodash.groupby": "^4.6.6",
"@types/node": "^13.9.0",
"@types/react": "^16.9.9",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-custom-scrollbars": "^4.0.6",
"@types/react-dom": "^16.9.5",
"@types/react-dom": "^16.9.8",
"@types/react-loadable": "^5.5.2",
"@types/react-redux": "^7.1.7",
"@types/react-redux": "^7.1.9",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.2",
"@types/uuid": "^7.0.0",
"chance": "^1.1.3",
"@types/uuid": "^8.0.0",
"chance": "^1.1.6",
"cross-env": "^7.0.2",
"cypress": "^4.1.0",
"cypress": "^4.7.0",
"path-to-regexp": "^6.1.0",
"prop-types": "^15.7.2",
"react-scripts": "^3.4.0"
Expand Down
1 change: 0 additions & 1 deletion examples/sn-dms-demo/src/userManager.ts
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import { UserManagerSettings } from 'oidc-client'
import { createUserManager } from 'redux-oidc'

Expand Down
18 changes: 9 additions & 9 deletions examples/sn-react-browser/package.json
Expand Up @@ -21,30 +21,30 @@
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.2",
"@types/react-router-dom": "^5.1.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "^3.4.0",
"typescript": "^3.8.3"
"typescript": "^3.9.5"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@sensenet/authentication-oidc-react": "^1.0.1",
"@sensenet/client-core": "^3.0.1",
"@sensenet/default-content-types": "^2.1.0",
"@sensenet/document-viewer-react": "^2.1.1",
"@sensenet/hooks-react": "^1.1.0",
"@sensenet/list-controls-react": "^1.4.3",
"clsx": "^1.1.0",
"clsx": "^1.1.1",
"react-moment": "^0.9.6",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"browserslist": {
"production": [
Expand Down
1 change: 0 additions & 1 deletion examples/sn-react-browser/src/configuration.ts
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import { UserManagerSettings } from '@sensenet/authentication-oidc-react'

export const repositoryUrl = 'https://dev.demo.sensenet.com/'
Expand Down
1 change: 0 additions & 1 deletion examples/sn-react-browser/test/navbar.test.tsx
@@ -1,5 +1,4 @@
/* eslint-disable react/display-name */
/* eslint-disable @typescript-eslint/camelcase */
import Button from '@material-ui/core/Button'
import { mount } from 'enzyme'
import React, { PropsWithChildren } from 'react'
Expand Down
24 changes: 12 additions & 12 deletions examples/sn-react-calendar/package.json
Expand Up @@ -21,34 +21,34 @@
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/jest": "^25.2.3",
"@types/lodash.orderby": "^4.6.6",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.2",
"@types/react-router-dom": "^5.1.2",
"@types/uuid": "^7.0.0",
"@types/uuid": "^8.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.0",
"typescript": "^3.8.3"
"typescript": "^3.9.5"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@sensenet/authentication-oidc-react": "^1.0.1",
"@sensenet/client-core": "^3.0.1",
"@sensenet/controls-react": "^3.3.8",
"@sensenet/default-content-types": "^2.1.0",
"@sensenet/hooks-react": "^1.1.0",
"clsx": "^1.1.0",
"clsx": "^1.1.1",
"lodash.orderby": "^4.6.0",
"moment": "^2.24.0",
"moment": "^2.26.0",
"striptags": "^3.1.1",
"uuid": "^8.0.0"
"uuid": "^8.1.0"
},
"browserslist": {
"production": [
Expand Down
1 change: 0 additions & 1 deletion examples/sn-react-calendar/src/configuration.ts
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import { UserManagerSettings } from '@sensenet/authentication-oidc-react'

export const repositoryUrl = 'https://dev.demo.sensenet.com/'
Expand Down
40 changes: 20 additions & 20 deletions examples/sn-react-component-docs/package.json
Expand Up @@ -42,30 +42,30 @@
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@storybook/addon-a11y": "^5.3.14",
"@storybook/addon-actions": "^5.3.14",
"@storybook/addon-events": "^5.3.14",
"@storybook/addon-info": "^5.3.14",
"@storybook/addon-knobs": "^5.3.14",
"@storybook/addon-links": "^5.3.14",
"@storybook/addon-notes": "^5.3.14",
"@storybook/addon-options": "^5.3.14",
"@storybook/addon-storysource": "^5.3.14",
"@storybook/addon-viewport": "^5.3.14",
"@storybook/addons": "^5.3.14",
"@storybook/core": "^5.3.14",
"@storybook/react": "^5.3.14",
"@storybook/source-loader": "^5.3.14",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/uuid": "^7.0.0",
"@babel/core": "^7.10.2",
"@storybook/addon-a11y": "^5.3.19",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-events": "^5.3.19",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-knobs": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addon-notes": "^5.3.19",
"@storybook/addon-options": "^5.3.19",
"@storybook/addon-storysource": "^5.3.19",
"@storybook/addon-viewport": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/core": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/source-loader": "^5.3.19",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/uuid": "^8.0.0",
"babel-loader": "^8.0.6",
"prop-types": "^15.7.2",
"react-docgen-typescript-loader": "^3.7.1",
"regenerator-runtime": "^0.13.3",
"ts-loader": "^7.0.3",
"uuid": "^8.0.0",
"ts-loader": "^7.0.5",
"uuid": "^8.1.0",
"webpack": "^4.42.0"
}
}
18 changes: 9 additions & 9 deletions examples/sn-react-imagegallery/package.json
Expand Up @@ -21,27 +21,27 @@
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-router": "^5.1.2",
"@types/react-router-dom": "^5.1.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.0",
"typescript": "^3.8.3"
"typescript": "^3.9.5"
},
"dependencies": {
"@material-ui/core": "^4.9.5",
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@sensenet/authentication-oidc-react": "^1.0.1",
"@sensenet/client-core": "^3.0.1",
"@sensenet/default-content-types": "^2.1.0",
"@sensenet/hooks-react": "^1.1.0",
"moment": "^2.24.0"
"moment": "^2.26.0"
},
"browserslist": {
"production": [
Expand Down
1 change: 0 additions & 1 deletion examples/sn-react-imagegallery/src/configuration.ts
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/camelcase */
import { UserManagerSettings } from '@sensenet/authentication-oidc-react'

export const repositoryUrl = 'https://dev.demo.sensenet.com/'
Expand Down