1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00

Update dependencies

This commit is contained in:
Maksim Eltyshev 2020-11-20 06:01:42 +05:00
parent 16795548ed
commit e2796195d8
9 changed files with 52698 additions and 6271 deletions

View file

@ -1,4 +1,4 @@
FROM node:14 AS client-builder
FROM node AS client-builder
WORKDIR /app
@ -10,7 +10,7 @@ COPY client .
RUN npm run build
FROM node:14-alpine
FROM node:alpine
WORKDIR /app

42152
client/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -61,49 +61,49 @@
"date-fns": "^2.16.1",
"dequal": "^2.0.2",
"history": "^4.10.1",
"i18next": "^19.8.2",
"i18next": "^19.8.4",
"i18next-browser-languagedetector": "^6.0.1",
"initials": "^3.1.1",
"lodash": "^4.17.20",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-datepicker": "^3.3.0",
"react-dom": "^16.14.0",
"react-dropzone": "^11.2.0",
"react-dom": "^17.0.1",
"react-dropzone": "^11.2.4",
"react-i18next": "^11.7.3",
"react-input-mask": "^2.0.4",
"react-markdown": "^5.0.0",
"react-redux": "^7.2.1",
"react-markdown": "^5.0.3",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-textarea-autosize": "^8.2.0",
"react-scripts": "4.0.0",
"react-textarea-autosize": "^8.3.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-orm": "^0.16.2",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0",
"sails.io.js": "^1.2.1",
"semantic-ui-react": "^2.0.0",
"semantic-ui-react": "^2.0.1",
"socket.io-client": "^2.3.1",
"validator": "^13.1.17",
"whatwg-fetch": "^3.4.1"
"whatwg-fetch": "^3.5.0"
},
"devDependencies": {
"chai": "^4.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest-enzyme": "^7.1.2",
"prettier": "2.1.2",
"react-test-renderer": "^16.14.0"
"react-test-renderer": "^17.0.1"
}
}

View file

@ -56,14 +56,6 @@ export default (WrappedComponent, defaultProps) => {
boundariesElement: 'window',
},
},
{
name: 'zIndex',
enabled: true,
phase: 'write',
fn: ({ state }) => {
state.styles.popper.zIndex = 1899; // eslint-disable-line no-param-reassign
},
},
]}
className={styles.wrapper}
onOpen={handleOpen}

2550
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -43,6 +43,6 @@
"devDependencies": {
"concurrently": "^5.3.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2"
"lint-staged": "^10.5.1"
}
}

View file

@ -1,4 +1,4 @@
TZ=UTC
BASE_URL=http://localhost:1337
DATABASE_URL=postgresql://postgres@localhost/planka
DATABASE_URL=postgresql://postgres@localhost/planka-current
SECRET_KEY=notsecretkey

14169
server/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -43,30 +43,30 @@
"dotenv-cli": "^4.0.0",
"filenamify": "^4.2.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.6",
"knex": "^0.21.12",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"rimraf": "^3.0.2",
"sails": "^1.4.0",
"sails-hook-orm": "^3.0.1",
"sails-hook-sockets": "^2.0.0",
"sails-postgresql-redacted": "^1.0.2-8",
"sharp": "^0.26.2",
"sails-postgresql-redacted": "^1.0.2-9",
"sharp": "^0.26.3",
"stream-to-array": "^2.3.0",
"uuid": "^8.3.1",
"validator": "^13.1.17"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.2.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"prettier": "2.1.2",
"supertest": "^5.0.0"
"supertest": "^6.0.1"
},
"engines": {
"node": "^12.10"