Skip to content

Commit

Permalink
Bump to 4.15.5-0 and most deps
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim authored Sep 26, 2022
1 parent 2348572 commit b0fe334
Show file tree
Hide file tree
Showing 24 changed files with 10,202 additions and 7,841 deletions.
4,654 changes: 2,755 additions & 1,899 deletions package-lock.json

Large diffs are not rendered by default.

57 changes: 29 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "botframework-webchat-root",
"version": "4.15.4",
"version": "4.15.5-0",
"private": true,
"files": [
"lib/**/*"
Expand All @@ -23,8 +23,8 @@
"browser:watch": "node-dev --no-notify --respawn ./packages/test/harness/src/host/dev/index http://localhost:5001/__tests__/html/",
"build": "lerna run --ignore playground --stream build",
"bump": "npm run bump:prod && npm run bump:dev",
"bump:dev": "npm install $(cat package.json | jq -r '(.devDependencies | keys) - .skipBump | .[]' | awk '{print $1 \"@latest\"}')",
"bump:prod": "npm install --save-exact $(cat package.json | jq -r '(.dependencies | keys) - .skipBump | .[]' | awk '{print $1 \"@latest\"}')",
"bump:dev": "npm install $(cat package.json | jq -r '(.devDependencies | keys) - (.skipBump | keys) | .[]' | awk '{print $1 \"@latest\"}')",
"bump:prod": "npm install --save-exact $(cat package.json | jq -r '(.dependencies | keys) - (.skipBump | keys) | .[]' | awk '{print $1 \"@latest\"}')",
"docker": "npm run docker:up",
"docker:down": "docker-compose -f docker-compose-wsl2.yml down --rmi all",
"docker:up": "docker-compose -f docker-compose-wsl2.yml down && docker-compose -f docker-compose-wsl2.yml up --build --scale chrome=4",
Expand Down Expand Up @@ -54,53 +54,54 @@
"tableflip": "npx lerna clean --yes --concurrency 8 && npx rimraf node_modules && npm ci && npm run bootstrap -- --concurrency 8",
"test": "jest --watch"
},
"skipBump": [
"@types/react-dom",
"get-port",
"node-fetch",
"react",
"react-dom",
"strip-ansi"
],
"skipBump": {
"@types/react-dom": "",
"get-port": "get-port@6 dropped support of CommonJS",
"jest": "jest-image-snapshot@5.2.0 does not support jest@29 yet",
"node-fetch": "node-fetch@3 dropped support of CommonJS",
"react": "using react@16.8.6 to make sure this is the minimum supported version",
"react-dom": "using react-dom@16.8.6 to make sure this is the minimum supported version",
"strip-ansi": ""
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@babel/runtime": "^7.19.0",
"@types/react-dom": "~16.8.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"abort-controller": "^3.0.0",
"babel-jest": "^28.1.3",
"concurrently": "^7.3.0",
"core-js": "^3.24.1",
"babel-jest": "^29.0.3",
"concurrently": "^7.4.0",
"core-js": "^3.25.3",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"dotenv": "^16.0.2",
"error-stack-parser": "^2.1.4",
"eslint": "^8.21.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.5.0",
"get-port": "^5.1.1",
"global-agent": "^3.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-image-snapshot": "^5.1.0",
"jest-junit": "^14.0.0",
"jest-environment-jsdom": "^29.0.3",
"jest-image-snapshot": "^5.2.0",
"jest-junit": "^14.0.1",
"jest-trx-results-processor": "^3.0.1",
"lerna": "^5.4.0",
"lerna": "^5.5.2",
"lint-staged": "^13.0.3",
"lolex": "^6.0.0",
"node-dev": "^7.4.3",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.19",
"nodemon": "^2.0.20",
"p-defer": "^4.0.0",
"prettier": "^2.7.1",
"react": "16.8.6",
Expand All @@ -109,7 +110,7 @@
"serve": "^14.0.1",
"serve-handler": "^6.1.3",
"strip-ansi": "^6.0.1",
"typescript": "^4.7.4",
"typescript": "^4.8.3",
"xmlbuilder": "^15.1.1"
}
}
Loading

0 comments on commit b0fe334

Please sign in to comment.