mirror of
https://github.com/PretendoNetwork/account.git
synced 2026-05-18 18:31:36 -05:00
chore: upgrade grpc and eslint config and fix linting
This commit is contained in:
parent
e4e5bc42bb
commit
20f82eaf72
1457
package-lock.json
generated
1457
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
|
@ -28,7 +28,7 @@
|
|||
"@aws-sdk/client-s3": "^3.657.0",
|
||||
"@aws-sdk/client-ses": "^3.515.0",
|
||||
"@inquirer/prompts": "^7.2.0",
|
||||
"@pretendonetwork/grpc": "^2.2.3",
|
||||
"@pretendonetwork/grpc": "^2.5.2",
|
||||
"bcrypt": "^5.0.0",
|
||||
"buffer-crc32": "^0.2.13",
|
||||
"colors": "^1.4.0",
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@hcaptcha/types": "^1.0.3",
|
||||
"@pretendonetwork/eslint-config": "^0.0.8",
|
||||
"@pretendonetwork/eslint-config": "^0.1.4",
|
||||
"@types/bcrypt": "^5.0.0",
|
||||
"@types/buffer-crc32": "^0.2.2",
|
||||
"@types/cors": "^2.8.13",
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
import fs from 'node:fs/promises';
|
||||
import { z } from 'zod';
|
||||
import mongoose from 'mongoose';
|
||||
import { config, disabledFeatures } from './config-manager';
|
||||
import { LOG_INFO, LOG_WARN } from './logger';
|
||||
import { Server } from './models/server';
|
||||
import { config, disabledFeatures } from '@/config-manager';
|
||||
import { LOG_INFO, LOG_WARN } from '@/logger';
|
||||
import { Server } from '@/models/server';
|
||||
|
||||
// Provisioning has a couple edgecases:
|
||||
// - It will only update existing entries, will not add new one
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ import api from '@/services/api';
|
|||
import localcdn from '@/services/local-cdn';
|
||||
import assets from '@/services/assets';
|
||||
import { config, disabledFeatures } from '@/config-manager';
|
||||
import { startProvisioner } from './provisioning';
|
||||
import { startProvisioner } from '@/provisioning';
|
||||
|
||||
process.title = 'Pretendo - Account';
|
||||
process.on('uncaughtException', (err, origin) => {
|
||||
|
|
|
|||
|
|
@ -11,11 +11,11 @@ import { SystemType } from '@/types/common/system-types';
|
|||
import { TokenType } from '@/types/common/token-types';
|
||||
import { config, disabledFeatures } from '@/config-manager';
|
||||
import { LOG_ERROR } from '@/logger';
|
||||
import type { IncomingHttpHeaders } from 'node:http';
|
||||
import type { ParsedQs } from 'qs';
|
||||
import type mongoose from 'mongoose';
|
||||
import type express from 'express';
|
||||
import type { ObjectCannedACL } from '@aws-sdk/client-s3';
|
||||
import type { IncomingHttpHeaders } from 'node:http';
|
||||
import type { TokenOptions } from '@/types/common/token-options';
|
||||
import type { Token } from '@/types/common/token';
|
||||
import type { IPNID, IPNIDMethods } from '@/types/mongoose/pnid';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user