Skip to content

Commit

Permalink
Merge 60719de into a38c9ec
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosCortizasCT authored Aug 17, 2022
2 parents a38c9ec + 60719de commit 86bb4fa
Show file tree
Hide file tree
Showing 27 changed files with 2,456 additions and 1,691 deletions.
8 changes: 4 additions & 4 deletions application-templates/starter-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,20 @@
"@manypkg/cli": "0.19.1",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "7.0.2",
"eslint": "8.19.0",
"eslint": "8.22.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-graphql": "^4.0.0",
"jest": "27.5.1",
"jest-runner-eslint": "1.0.1",
"jest-watch-typeahead": "1.1.0",
"msw": "0.44.0",
"msw": "0.44.2",
"omit-empty-es": "1.1.3",
"prettier": "2.6.2",
"prettier": "2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.25.1",
"react-redux": "7.2.8",
"react-router-dom": "5.3.1",
"react-router-dom": "5.3.3",
"redux": "4.2.0",
"typescript": "4.7.4"
},
Expand Down
8 changes: 4 additions & 4 deletions application-templates/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@
"@manypkg/cli": "0.19.1",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "7.0.2",
"eslint": "8.19.0",
"eslint": "8.22.0",
"eslint-formatter-pretty": "4.1.0",
"jest": "27.5.1",
"jest-runner-eslint": "1.0.1",
"jest-watch-typeahead": "1.1.0",
"msw": "0.44.0",
"msw": "0.44.2",
"omit-empty-es": "1.1.3",
"prettier": "2.6.2",
"prettier": "2.7.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.25.1",
"react-redux": "7.2.8",
"react-router-dom": "5.3.1",
"react-router-dom": "5.3.3",
"redux": "4.2.0"
}
}
4 changes: 2 additions & 2 deletions graphql-test-utils/graphql-models/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Project = new Factory()
.attr('__typename', 'Project')
.attr('key', () => faker.random.alphaNumeric(4))
.attr('version', () => faker.datatype.number())
.attr('name', () => faker.company.companyName())
.attr('name', () => faker.company.name())
.attr('countries', ['de'])
.attr('currencies', ['EUR', 'USD'])
.attr('languages', ['en', 'de'])
Expand All @@ -33,7 +33,7 @@ const Project = new Factory()
.attr('owner', () => ({
__typename: 'Organization',
id: faker.datatype.uuid(),
name: faker.company.companyName(),
name: faker.company.name(),
}));

export default Project;
2 changes: 1 addition & 1 deletion graphql-test-utils/graphql-models/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const User = new Factory()
.attr('timeZone', 'Europe/Berlin')
.attr('launchdarklyTrackingId', () => faker.random.alphaNumeric(16))
.attr('launchdarklyTrackingGroup', () =>
faker.helpers.slugify(faker.company.companyName())
faker.helpers.slugify(faker.company.name())
)
.attr('launchdarklyTrackingSubgroup', () => 'dev')
.attr('launchdarklyTrackingTeam', () => [faker.random.word()])
Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,31 +86,31 @@
"dependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@changesets/changelog-github": "0.4.4",
"@changesets/cli": "2.22.0",
"@commercetools-docs/writing-style": "3.1.1",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "2.24.3",
"@commercetools-docs/writing-style": "3.2.0",
"@commercetools-test-data/core": "3.1.2",
"@commercetools-uikit/design-system": "^15.1.0",
"@commercetools/github-labels": "1.1.0",
"@commitlint/cli": "16.2.4",
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@faker-js/faker": "7.3.0",
"@faker-js/faker": "7.4.0",
"@formatjs/cli": "4.8.4",
"@graphql-codegen/add": "3.1.1",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.11",
"@graphql-codegen/typescript-graphql-files-modules": "2.1.1",
"@graphql-codegen/typescript-operations": "2.4.0",
"@graphql-codegen/add": "3.2.1",
"@graphql-codegen/cli": "2.11.6",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-graphql-files-modules": "2.2.1",
"@graphql-codegen/typescript-operations": "2.5.3",
"@manypkg/cli": "0.19.1",
"@percy/cli": "1.1.4",
"@percy/cypress": "3.1.1",
"@percy/puppeteer": "2.0.2",
"@preconstruct/cli": "2.1.5",
"@svgr/cli": "6.2.1",
"@svgr/plugin-jsx": "6.2.1",
"@svgr/plugin-svgo": "6.2.0",
"@testing-library/cypress": "8.0.2",
"@preconstruct/cli": "2.2.1",
"@svgr/cli": "6.3.1",
"@svgr/plugin-jsx": "6.3.1",
"@svgr/plugin-svgo": "6.3.1",
"@testing-library/cypress": "8.0.3",
"@testing-library/react": "12.1.5",
"@tsconfig/cypress": "^1.0.0",
"@types/jest-environment-puppeteer": "^5.0.2",
Expand All @@ -124,32 +124,32 @@
"babel-plugin-typescript-to-proptypes": "1.4.2",
"cross-env": "7.0.3",
"cypress": "9.6.1",
"dotenv": "16.0.0",
"eslint": "8.19.0",
"dotenv": "16.0.1",
"eslint": "8.22.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-graphql": "^4.0.0",
"graphql": "16.5.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-each": "27.5.1",
"jest-puppeteer": "6.1.0",
"jest-puppeteer": "6.1.1",
"jest-runner-eslint": "1.0.1",
"jest-runner-executor": "1.0.0",
"jest-silent-reporter": "0.5.0",
"jest-watch-typeahead": "1.1.0",
"lint-staged": "11.2.6",
"mri": "1.2.0",
"postcss": "8.4.14",
"postcss": "8.4.16",
"postcss-load-config": "3.1.4",
"postcss-modules": "4.3.1",
"prettier": "2.6.2",
"puppeteer": "14.1.0",
"prettier": "2.7.1",
"puppeteer": "14.4.1",
"rcfile": "1.0.3",
"replace": "1.2.1",
"rosie": "2.1.0",
"shelljs": "0.8.5",
"start-server-and-test": "1.14.0",
"stylelint": "14.9.1",
"stylelint": "14.10.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "26.0.0",
"stylelint-order": "5.0.0",
Expand All @@ -162,10 +162,10 @@
"@babel/preset-env": "^7.18.6",
"@formatjs/ecma402-abstract": "^1.11.8",
"@jest/types": "27.5.1",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.5",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@types/eslint": "^8.2.2",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.16",
"@types/react": "17.0.48",
"@types/react-dom": "17.0.17",
"@types/react-router": "5.1.18",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
Expand All @@ -178,5 +178,5 @@
"npm": ">=6",
"yarn": ">=1.10"
},
"packageManager": "yarn@3.2.1"
"packageManager": "yarn@3.2.2"
}
2 changes: 1 addition & 1 deletion packages-backend/eslint-config-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"eslint": "8.19.0"
"eslint": "8.22.0"
},
"engines": {
"node": ">=14"
Expand Down
6 changes: 3 additions & 3 deletions packages-backend/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"@babel/runtime-corejs3": "^7.18.6",
"@types/node": "^16.11.33",
"express": "4.18.1",
"express-jwt": "7.7.0",
"jwks-rsa": "2.1.1"
"express-jwt": "7.7.5",
"jwks-rsa": "2.1.4"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/express-unless": "^0.5.3",
"@types/jsonwebtoken": "^8.5.8",
"jose": "2.0.5",
"msw": "0.44.0"
"msw": "0.44.2"
}
}
6 changes: 3 additions & 3 deletions packages-backend/loggers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@babel/runtime-corejs3": "^7.18.6",
"@sentry/node": "7.6.0",
"@sentry/node": "7.10.0",
"@types/triple-beam": "1.3.2",
"express-winston": "4.2.0",
"fast-safe-stringify": "2.1.1",
"lodash": "4.17.21",
"logform": "2.4.0",
"logform": "2.4.2",
"triple-beam": "1.3.0",
"winston": "3.7.2"
"winston": "3.8.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
Expand Down
5 changes: 3 additions & 2 deletions packages/application-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"@react-hook/latest": "1.0.3",
"@react-hook/resize-observer": "1.2.5",
"@react-hook/resize-observer": "1.2.6",
"@types/history": "^4.7.11",
"@types/lodash": "^4.14.182",
"@types/prop-types": "^15.7.5",
Expand All @@ -64,10 +64,11 @@
"react-modal": "3.15.1"
},
"devDependencies": {
"@types/raf-schd": "^4.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.25.1",
"react-router-dom": "5.3.1"
"react-router-dom": "5.3.3"
},
"peerDependencies": {
"react": "17.x",
Expand Down
2 changes: 1 addition & 1 deletion packages/application-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"devDependencies": {
"@types/jsdom": "^16.2.14",
"json-schema-to-typescript": "11.0.1",
"json-schema-to-typescript": "11.0.2",
"shelljs": "0.8.5"
},
"engines": {
Expand Down
20 changes: 10 additions & 10 deletions packages/application-shell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@
"@commercetools/http-user-agent": "2.1.2",
"@emotion/react": "11.9.3",
"@emotion/styled": "11.9.3",
"@flopflip/combine-adapters": "0.0.32",
"@flopflip/http-adapter": "0.0.22",
"@flopflip/launchdarkly-adapter": "5.0.27",
"@flopflip/react-broadcast": "12.2.18",
"@flopflip/types": "4.1.23",
"@flopflip/combine-adapters": "0.0.33",
"@flopflip/http-adapter": "0.0.23",
"@flopflip/launchdarkly-adapter": "5.0.28",
"@flopflip/react-broadcast": "12.3.0",
"@flopflip/types": "4.1.24",
"@types/common-tags": "^1.8.1",
"@types/history": "^4.7.11",
"@types/lodash": "^4.14.182",
Expand All @@ -82,8 +82,8 @@
"classnames": "^2.3.1",
"common-tags": "1.8.2",
"debounce-async": "0.0.2",
"downshift": "6.1.7",
"fuse.js": "6.6.1",
"downshift": "6.1.9",
"fuse.js": "6.6.2",
"graphql": "16.5.0",
"history": "4.10.1",
"is-retina": "1.0.3",
Expand All @@ -97,7 +97,7 @@
"prop-types": "15.8.1",
"qss": "2.0.3",
"react-required-if": "1.0.3",
"react-select": "5.3.2",
"react-select": "5.4.0",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.1",
"tiny-invariant": "1.2.0",
Expand All @@ -108,12 +108,12 @@
"@apollo/client": "3.6.9",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "7.0.2",
"msw": "0.44.0",
"msw": "0.44.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "^5.25.1",
"react-redux": "7.2.8",
"react-router-dom": "5.3.1",
"react-router-dom": "5.3.3",
"redux": "4.2.0",
"wait-for-observables": "1.0.3"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/codemod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"dependencies": {
"cac": "6.7.12",
"glob": "8.0.1",
"glob": "8.0.3",
"jscodeshift": "0.13.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/create-mc-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"cac": "6.7.12",
"execa": "5.1.1",
"listr2": "4.0.5",
"prettier": "2.6.2",
"prettier": "2.7.1",
"rcfile": "1.0.3",
"semver": "7.3.7"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-mc-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"eslint": "8.x"
},
"devDependencies": {
"eslint": "8.19.0"
"eslint": "8.22.0"
},
"engines": {
"node": ">=14"
Expand Down
4 changes: 2 additions & 2 deletions packages/jest-preset-mc-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@
"@formatjs/intl-numberformat": "^7.4.3",
"@formatjs/intl-pluralrules": "^4.3.3",
"@sheerun/mutationobserver-shim": "0.3.3",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/jest-dom": "5.16.5",
"babel-jest": "27.5.1",
"colors": "1.4.0",
"cosmiconfig": "7.0.1",
"identity-obj-proxy": "3.0.0",
"intl": "1.2.5",
"jest-localstorage-mock": "2.4.21",
"jest-localstorage-mock": "2.4.22",
"jest-mock": "^27.5.1",
"jest-silent-reporter": "0.5.0",
"jest-transform-graphql": "2.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/jest-stylelint-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"main": "index.js",
"module": "index.js",
"dependencies": {
"create-jest-runner": "0.10.0",
"create-jest-runner": "0.11.2",
"postcss-load-config": "3.1.4"
},
"devDependencies": {
"postcss": "8.4.14",
"stylelint": "14.9.1"
"postcss": "8.4.16",
"stylelint": "14.10.0"
},
"peerDependencies": {
"postcss": "8.x",
Expand Down
2 changes: 1 addition & 1 deletion packages/mc-html-template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@commercetools-frontend/application-config": "21.12.0",
"@commercetools-frontend/constants": "21.12.0",
"serialize-javascript": "6.0.0",
"uglify-js": "3.15.4",
"uglify-js": "3.16.3",
"uglifycss": "0.0.29"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 86bb4fa

Please sign in to comment.