Skip to content

Commit

Permalink
Bump dependencies (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
osipov-mit authored Jul 26, 2023
1 parent 3516f42 commit 095d9c0
Show file tree
Hide file tree
Showing 6 changed files with 1,674 additions and 2,109 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/renew-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
working-directory: util
run: yarn build

- name: Renew vara config
- name: Renew gear testnet config
if: ${{ steps.compare.outputs.metaChanged == 'true' }}
working-directory: util
run: yarn update:test
Expand Down
28 changes: 14 additions & 14 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,33 @@
"fs": false
},
"dependencies": {
"@babel/cli": "^7.21.5",
"superagent": "^5.3.0"
"@babel/cli": "^7.22.9",
"superagent": "^8.0.9"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/core": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.3",
"@babel/plugin-proposal-do-expressions": "^7.18.6",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-proposal-do-expressions": "^7.22.5",
"@babel/plugin-proposal-export-default-from": "^7.22.5",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-function-bind": "^7.22.5",
"@babel/plugin-proposal-function-sent": "^7.22.5",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-proposal-pipeline-operator": "^7.22.5",
"@babel/plugin-proposal-throw-expressions": "^7.22.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.22.4",
"@babel/register": "^7.21.0",
"@babel/preset-env": "^7.22.9",
"@babel/register": "^7.22.5",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"sinon": "^7.2.0",
"typescript": "^5.1.3"
"sinon": "^15.2.0",
"typescript": "^5.1.6"
},
"files": [
"dist"
Expand Down
26 changes: 13 additions & 13 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
],
"private": true,
"dependencies": {
"@polkadot/api": "^10.7.1",
"@polkadot/types": "^10.7.1",
"@polkadot/types-codec": "^10.7.1",
"@polkadot/api": "^10.9.1",
"@polkadot/types": "^10.9.1",
"@polkadot/types-codec": "^10.9.1",
"@polkadot/util": "^12.2.1",
"@substrate/txwrapper-core": "6.0.1",
"@substrate/txwrapper-polkadot": "6.0.1",
"@substrate/txwrapper-core": "7.0.1",
"@substrate/txwrapper-polkadot": "7.0.1",
"body-parser": "1.20.2",
"camelcase": "6.3.0",
"commander": "^10.0.1",
"commander": "^11.0.0",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"express": "4.18.2",
Expand All @@ -43,21 +43,21 @@
"ono": "7.1.3",
"openapi-sampler": "^1.3.1",
"rosetta-client": "workspace:^",
"swagger-ui-express": "4.6.3",
"winston": "3.9.0"
"swagger-ui-express": "5.0.0",
"winston": "3.10.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.59.8",
"@typescript-eslint/parser": "^6.2.0",
"axios": "^1.4.0",
"chai": "^4.3.7",
"chai": "^5.0.0-alpha.1",
"chai-as-promised": "^7.1.1",
"eslint": "^8.41.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
"typescript": "^5.1.6"
},
"eslintConfig": {
"env": {
Expand Down
2 changes: 1 addition & 1 deletion server/src/networks.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { TypeRegistry } from '@polkadot/types';
import fs from 'fs';
import { Currency, NetworkIdentifier } from 'rosetta-client';
import { getChainParams } from 'gear-util';

import { getRegistry } from './helpers/registry';
import { GearNetworkOptions, NetworkProperties } from './types/index';
import { GearApi } from './helpers/gear';
import config from './config';
import { getNetworkOpts, isJsonFile } from './utils';
import { getChainParams } from 'gear-util';
import logger from './logger';

export class GearNetworkIdentifier extends NetworkIdentifier {
Expand Down
6 changes: 3 additions & 3 deletions util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"typescript": "^5.1.3"
"typescript": "^5.1.6"
},
"dependencies": {
"@polkadot/api": "10.6.1",
"commander": "^10.0.1",
"@polkadot/api": "10.9.1",
"commander": "^11.0.0",
"node-fetch": "2"
},
"scripts": {
Expand Down
Loading

0 comments on commit 095d9c0

Please sign in to comment.