Skip to content

Commit

Permalink
fix: remove uneeded deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Jan 9, 2021
1 parent 53efb35 commit c0f43fa
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions package-lock.json

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

1 change: 0 additions & 1 deletion package.json
Expand Up @@ -37,7 +37,6 @@
"json-schema-ref-parser": "^9.0.6",
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.uniq": "^4.5.0",
"lodash.zipobject": "^4.1.3",
"media-typer": "^1.1.0",
Expand Down
1 change: 0 additions & 1 deletion src/framework/openapi.schema.validator.ts
@@ -1,5 +1,4 @@
import * as Ajv from 'ajv';
import * as merge from 'lodash.merge';
import * as draftSchema from 'ajv/lib/refs/json-schema-draft-04.json';
// https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v3.0/schema.json
import * as openapi3Schema from './openapi.v3.schema.json';
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
@@ -1,4 +1,3 @@
import * as _uniq from 'lodash.uniq';
import * as res from './resolvers';
import { OpenApiValidator, OpenApiValidatorOpts } from './openapi.validator';
import { OpenApiSpecLoader } from './framework/openapi.spec.loader';
Expand Down
1 change: 0 additions & 1 deletion src/middlewares/openapi.metadata.ts
@@ -1,6 +1,5 @@
import * as _zipObject from 'lodash.zipobject';
import { pathToRegexp } from 'path-to-regexp';
import * as deepCopy from 'lodash.clonedeep';
import { Response, NextFunction } from 'express';
import { OpenApiContext } from '../framework/openapi.context';
import {
Expand Down
1 change: 0 additions & 1 deletion src/openapi.validator.ts
Expand Up @@ -2,7 +2,6 @@ import ono from 'ono';
import ajv = require('ajv');
import * as express from 'express';
import * as _uniq from 'lodash.uniq';
import * as cloneDeep from 'lodash.clonedeep';
import * as middlewares from './middlewares';
import { Application, Response, NextFunction, Router } from 'express';
import { OpenApiContext } from './framework/openapi.context';
Expand Down

0 comments on commit c0f43fa

Please sign in to comment.