Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
fix(package.json): remove peerDependencies (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranrib authored and galbash committed Dec 6, 2018
1 parent f83cb21 commit 14aaaf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@
"sinon": "^4.3.0",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"pg": "^7.5.0",
"aws-sdk": "^2.197.0",
"pg-pool": "^2.0.3"
},
"dependencies": {
"axios": "^0.18.0",
"google-protobuf": "^3.5.0",
Expand Down
2 changes: 2 additions & 0 deletions src/events/pg.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
const uuid4 = require('uuid4');
const shimmer = require('shimmer');
/* eslint-disable import/no-unresolved, import/no-extraneous-dependencies */
const pg = require('pg');
const Pool = require('pg-pool');
const sqlParser = require('node-sqlparser');
/* eslint-enable import/no-unresolved, import/no-extraneous-dependencies */
const utils = require('../utils.js');
const tracer = require('../tracer.js');
const serverlessEvent = require('../proto/event_pb.js');
Expand Down

0 comments on commit 14aaaf6

Please sign in to comment.