Skip to content
This repository has been archived by the owner on Sep 20, 2019. It is now read-only.

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode committed Sep 4, 2019
1 parent fe41786 commit b23b504
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 68 deletions.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ module.exports = {
// to the use of webpack DefinePlugin
VERSION: "1.1.1",
COMMIT_HASH: "placeholderhash",
HEDERA_NETWORK: "testnet",
HEDERA_NETWORK: "testnet"
}
};
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,48 +17,48 @@
"deploy:mainnet": "cross-env HEDERA_NETWORK=mainnet npm-run-all test:unit build firebase:deploy:mainnet"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.21",
"@fortawesome/free-solid-svg-icons": "^5.10.1",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/vue-fontawesome": "^0.1.7",
"@hashgraph/sdk": "^0.2.0",
"@mdi/js": "^4.1.95",
"@mdi/js": "^4.2.95",
"@vue/composition-api": "^0.2.1",
"bignumber.js": "^9.0.0",
"jdenticon": "^2.2.0",
"qrcode.vue": "^1.6.2",
"ua-parser-js": "^0.7.20",
"vue": "^2.6.10",
"vue-router": "^3.1.2",
"vuex": "^3.0.1",
"vue-router": "^3.1.3",
"vuex": "^3.1.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@improbable-eng/grpc-web-node-http-transport": "^0.11.0",
"@launchbadge/eslint-config": "^0.11.2",
"@launchbadge/eslint-config": "^0.11.5",
"@types/core-js": "2.x.x",
"@types/jest": "^24.0.18",
"@types/prettier": "1.18.2",
"@types/ua-parser-js": "^0.7.33",
"@types/zxcvbn": "^4.4.0",
"@vue/cli-plugin-babel": "^4.0.0-beta.3",
"@vue/cli-plugin-babel": "^4.0.0-rc.0",
"@vue/cli-plugin-e2e-nightwatch": "^3.11.0",
"@vue/cli-plugin-eslint": "^4.0.0-beta.3",
"@vue/cli-plugin-typescript": "^4.0.0-beta.3",
"@vue/cli-plugin-unit-jest": "^4.0.0-beta.3",
"@vue/cli-service": "^4.0.0-beta.3",
"@vue/cli-plugin-eslint": "^4.0.0-rc.0",
"@vue/cli-plugin-typescript": "^4.0.0-rc.0",
"@vue/cli-plugin-unit-jest": "^4.0.0-rc.0",
"@vue/cli-service": "^4.0.0-rc.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"chromedriver": "^76.0.0",
"babel-eslint": "^10.0.3",
"chromedriver": "^76.0.1",
"cross-env": "^5.2.1",
"cssnano-preset-advanced": "^4.0.7",
"eslint": "^6.2.1",
"firebase-tools": "^7.2.3",
"image-webpack-loader": "^5.0.0",
"eslint": "^6.3.0",
"firebase-tools": "^7.3.1",
"image-webpack-loader": "^6.0.0",
"jest": "^24.9.0",
"jest-canvas-mock": "^2.1.1",
"lint-staged": "^9.2.3",
"lint-staged": "^9.2.5",
"npm-run-all": "^4.1.5",
"postcss-font-magician": "^2.2.2",
"postcss-normalize": "^8.0.1",
Expand All @@ -72,13 +72,13 @@
"stylelint-declaration-strict-value": "^1.1.3",
"stylelint-no-indistinguishable-colors": "^1.2.1",
"stylelint-no-unsupported-browser-features": "^3.0.2",
"stylelint-no-unused-selectors": "^1.0.10",
"stylelint-order": "^3.0.1",
"stylelint-no-unused-selectors": "^1.0.11",
"stylelint-order": "^3.1.0",
"stylelint-prettier": "^1.1.1",
"stylelint-use-logical": "^1.1.0",
"stylelint-value-no-unknown-custom-properties": "^2.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.3",
"typescript": "^3.6.2",
"vue-template-compiler": "^2.6.10"
},
"gitHooks": {
Expand Down
6 changes: 3 additions & 3 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ const availableNetworks: { [key: string]: NetworkSettings } = {
proxy: "https://mainnet.grpc-web.myhederawallet.com",
address: "35.237.200.180:50211",
node: "0.0.3",
name: "mainnet",
name: "mainnet"
}
}
};

// HEDERA_NETWORK is defined in vue.config.js
// Populated from the HEDERA_NETWORK env variable
// Defaults to "testnet"
declare const HEDERA_NETWORK: string;

export default {
network: availableNetworks[HEDERA_NETWORK]!,
network: availableNetworks[HEDERA_NETWORK]!
};
2 changes: 1 addition & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module.exports = {
new webpack.DefinePlugin({
VERSION: `"${package.version.toString()}"`,
COMMIT_HASH: `"${hash.toString().trim()}"`,
HEDERA_NETWORK: `"${process.env.HEDERA_NETWORK || "testnet"}"`,
HEDERA_NETWORK: `"${process.env.HEDERA_NETWORK || "testnet"}"`
})
]
},
Expand Down
Loading

0 comments on commit b23b504

Please sign in to comment.