Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
atulmy committed Jul 9, 2019
1 parent b912414 commit 5e32cbc
Show file tree
Hide file tree
Showing 10 changed files with 1,042 additions and 781 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crate.code-workspace
.idea/
503 changes: 295 additions & 208 deletions code/api/package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions code/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/node": "7.4.5",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/runtime": "7.4.5",
"@babel/cli": "7.5.0",
"@babel/core": "7.5.0",
"@babel/node": "7.5.0",
"@babel/plugin-transform-runtime": "7.5.0",
"@babel/preset-env": "7.5.2",
"@babel/runtime": "7.5.2",
"nodemon": "1.19.1"
},
"dependencies": {
Expand All @@ -34,12 +34,12 @@
"dotenv": "8.0.0",
"express": "4.17.1",
"express-graphql": "0.8.0",
"graphql": "14.3.1",
"graphql": "14.4.2",
"jsonwebtoken": "8.5.1",
"morgan": "1.9.1",
"multer": "1.4.1",
"mysql2": "1.6.5",
"sequelize": "5.8.7",
"sequelize-cli": "5.4.0"
"sequelize": "5.9.4",
"sequelize-cli": "5.5.0"
}
}
24 changes: 12 additions & 12 deletions code/mobile/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions code/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"test": "jest"
},
"dependencies": {
"@react-native-community/async-storage": "1.4.2",
"@react-native-community/async-storage": "1.5.0",
"axios": "0.19.0",
"gql-query-builder": "3.0.6",
"gql-query-builder": "3.1.1",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-native": "0.59.9",
Expand All @@ -18,9 +18,9 @@
"react-native-vector-icons": "6.4.2",
"react-navigation": "3.11.0",
"react-redux": "6.0.0",
"redux": "4.0.1",
"redux": "4.0.2",
"redux-thunk": "2.3.0",
"validator": "11.0.0"
"validator": "11.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
Expand Down
2 changes: 1 addition & 1 deletion code/mobile/src/modules/crate/List/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class List extends PureComponent {
{
isLoading
? <Loading />
: list.length > 0
: list && list.length > 0
? <ScrollView style={styles.itemContainer}>
{ list.map((crate, i) => (
<CrateItem
Expand Down
2 changes: 1 addition & 1 deletion code/mobile/src/modules/product/List/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class List extends PureComponent {
{
isLoading
? <Loading />
: list.length > 0
: list && list.length > 0
? <ScrollView style={styles.itemContainer}>
{ list.map((product, i) => (
<ProductItem
Expand Down
Loading

0 comments on commit 5e32cbc

Please sign in to comment.