mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
Bump eslint-plugin-import from 2.22.1 to 2.23.2 (#560)
* Bump eslint-plugin-import from 2.22.1 to 2.23.2 Bumps [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) from 2.22.1 to 2.23.2. - [Release notes](https://github.com/benmosher/eslint-plugin-import/releases) - [Changelog](https://github.com/benmosher/eslint-plugin-import/blob/master/CHANGELOG.md) - [Commits](https://github.com/benmosher/eslint-plugin-import/compare/v2.22.1...v2.23.2) Signed-off-by: dependabot[bot] <support@github.com> * fixed eslint-plugin-import update Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dan13ram <dan13ram@gmail.com>
This commit is contained in:
@@ -18,6 +18,11 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@types/bluebird": "3.5.34",
|
||||
"@types/express": "4.17.11",
|
||||
"@types/node-fetch": "2.5.10",
|
||||
"@types/body-parser": "1.19.0",
|
||||
"@types/uuid": "8.3.0",
|
||||
"3box": "1.22.2",
|
||||
"@metafam/discord-bot": "0.1.0",
|
||||
"@metafam/utils": "1.0.0",
|
||||
@@ -37,9 +42,6 @@
|
||||
"uuid": "8.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bluebird": "3.5.34",
|
||||
"@types/express": "4.17.11",
|
||||
"@types/node-fetch": "2.5.10",
|
||||
"concurrently": "6.1.0",
|
||||
"ts-node-dev": "1.1.6"
|
||||
}
|
||||
|
||||
@@ -28,10 +28,7 @@ function parseEnv<T extends string | number>(
|
||||
export const CONFIG: IConfig = {
|
||||
port: parseEnv(process.env.PORT, 4000),
|
||||
graphqlURL: (() => {
|
||||
const {
|
||||
GRAPHQL_URL: url,
|
||||
GRAPHQL_HOST: host,
|
||||
} = process.env;
|
||||
const { GRAPHQL_URL: url, GRAPHQL_HOST: host } = process.env;
|
||||
|
||||
if (url) return url;
|
||||
if (host) {
|
||||
|
||||
@@ -2,7 +2,12 @@ import { Constants, isNotNullOrUndefined } from '@metafam/utils';
|
||||
import bluebird from 'bluebird';
|
||||
import { Request, Response } from 'express';
|
||||
import fetch from 'node-fetch';
|
||||
import { AddressBookEntry, SCAccountsData, SCAlias, sourcecred as sc } from 'sourcecred';
|
||||
import {
|
||||
AddressBookEntry,
|
||||
SCAccountsData,
|
||||
SCAlias,
|
||||
sourcecred as sc,
|
||||
} from 'sourcecred';
|
||||
|
||||
import {
|
||||
AccountType_Enum,
|
||||
|
||||
Reference in New Issue
Block a user