Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,8 @@ workflows:
branches:
only:
- develop
- feature/email
- feature/emsi_skills_search
- public-city-info
- feature/profile_nudge
- TAL-77

- PLAT-3619

# Production builds are exectuted only on tagged commits to the
# master branch.
- "build-prod":
Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,37 +22,37 @@
"author": "TCSCODER",
"license": "none",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"mocha": "^6.1.4",
"chai": "^5.1.0",
"chai-http": "^4.4.0",
"mocha": "^10.3.0",
"mocha-prepare": "^0.1.0",
"nyc": "^14.0.0",
"standard": "^12.0.1"
"nyc": "^15.1.0",
"standard": "^17.1.0"
},
"dependencies": {
"aws-sdk": "^2.466.0",
"axios": "^0.27.2",
"aws-sdk": "^2.1562.0",
"axios": "^1.6.7",
"bluebird": "^3.5.1",
"body-parser": "^1.15.1",
"config": "^3.0.1",
"body-parser": "^1.20.2",
"config": "^3.3.11",
"cors": "^2.7.1",
"dynamoose": "^1.8.0",
"dynamoose": "^1.0.0",
"elasticsearch": "^16.7.3",
"express": "^4.15.4",
"express-fileupload": "^1.1.4",
"express-fileupload": "^1.4.3",
"express-interceptor": "^1.2.0",
"get-parameter-names": "^0.3.0",
"http-aws-es": "^6.0.0",
"http-status-codes": "^1.3.0",
"http-status-codes": "^2.3.0",
"joi": "^14.0.0",
"jsonwebtoken": "^8.3.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"moment": "^2.30.1",
"request": "^2.88.2",
"tc-core-library-js": "github:appirio-tech/tc-core-library-js.git#v2.6.5",
"topcoder-bus-api-wrapper": "^1.0.1",
"uuid": "^3.3.2",
"winston": "^3.1.0"
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"standard": {
"env": [
Expand Down
2 changes: 1 addition & 1 deletion src/services/MemberService.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
const _ = require('lodash')
const Joi = require('joi')
const crypto = require('crypto')
const uuid = require('uuid/v4')
const uuid = require('uuid').v4
const config = require('config')
const helper = require('../common/helper')
const logger = require('../common/logger')
Expand Down
Loading