dependency updates
This commit is contained in:
parent
0ecb5cfb5a
commit
e661de3a42
3 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
const uuid = require('uuid/v4');
|
const { v4: uuid} = require('uuid');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const fs = require('fs');
|
const fs = require('fs');
|
||||||
|
|
||||||
|
|
10
package.json
10
package.json
|
@ -17,9 +17,9 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcrypt-nodejs": "^0.0.3",
|
"bcrypt-nodejs": "^0.0.3",
|
||||||
"body-parser": "^1.18.3",
|
"body-parser": "^1.18.3",
|
||||||
"chalk": "^2.4.1",
|
"chalk": "^4.1.0",
|
||||||
"connect-flash": "^0.1.1",
|
"connect-flash": "^0.1.1",
|
||||||
"dotenv": "^6.1.0",
|
"dotenv": "^8.2.0",
|
||||||
"express": "4.17.1",
|
"express": "4.17.1",
|
||||||
"express-session": "^1.15.6",
|
"express-session": "^1.15.6",
|
||||||
"express-session-level": "^1.0.0",
|
"express-session-level": "^1.0.0",
|
||||||
|
@ -29,9 +29,9 @@
|
||||||
"nanoid": "^3.1.16",
|
"nanoid": "^3.1.16",
|
||||||
"passport": "^0.4.0",
|
"passport": "^0.4.0",
|
||||||
"passport-local": "^1.0.0",
|
"passport-local": "^1.0.0",
|
||||||
"pouchdb": "^7.0.0",
|
"pouchdb": "^7.2.2",
|
||||||
"pug": "^2.0.3",
|
"pug": "^3.0.0",
|
||||||
"uuid": "^3.3.2",
|
"uuid": "^8.3.1",
|
||||||
"yes-no": "^0.0.1"
|
"yes-no": "^0.0.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@ const verifyAuth = require('../../middlewares/verifyAuth');
|
||||||
const getProductName = require('get-product-name');
|
const getProductName = require('get-product-name');
|
||||||
const express = require('express');
|
const express = require('express');
|
||||||
const config = require('../../config');
|
const config = require('../../config');
|
||||||
const uuid = require('uuid/v4');
|
const { v4: uuid} = require('uuid');
|
||||||
|
|
||||||
const totals = wishlist => {
|
const totals = wishlist => {
|
||||||
let unpledged = 0;
|
let unpledged = 0;
|
||||||
|
|
Loading…
Reference in a new issue