Skip to content

Commit

Permalink
fix: allows you to handle peer dependencies greater than or equal to
Browse files Browse the repository at this point in the history
  • Loading branch information
juandav committed Dec 20, 2023
1 parent 898b705 commit 9885780
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,54 +52,54 @@
]
},
"dependencies": {
"css-inline": "^0.11.2",
"css-inline": "0.11.2",
"glob": "10.3.10",
"mjml": "^4.14.1",
"mjml": "4.14.1",
"preview-email": "3.0.19"
},
"optionalDependencies": {
"@types/ejs": "^3.1.5",
"@types/pug": "2.0.10",
"@types/pug": "^2.0.10",
"ejs": "^3.1.9",
"handlebars": "^4.7.8",
"pug": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-angular": "^18.4.3",
"@nestjs/common": "^10.3.0",
"@nestjs/core": "^10.3.0",
"@nestjs/testing": "^10.3.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/nodemailer": "^6.4.14",
"@commitlint/cli": "18.4.3",
"@commitlint/config-angular": "18.4.3",
"@nestjs/common": "10.3.0",
"@nestjs/core": "10.3.0",
"@nestjs/testing": "10.3.0",
"@types/glob": "8.1.0",
"@types/jest": "29.5.11",
"@types/lodash": "4.14.202",
"@types/nodemailer": "6.4.14",
"@types/pug": "2.0.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemailer": "^6.9.7",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "15.2.0",
"nodemailer": "6.9.7",
"nodemailer-mock": "2.0.3",
"prettier": "^3.1.1",
"prettier": "3.1.1",
"reflect-metadata": "0.2.1",
"rimraf": "5.0.5",
"rxjs": "^7.8.1",
"rxjs": "7.8.1",
"standard-version": "9.5.0",
"ts-jest": "^29.1.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "^5.3.3",
"yarn-audit-fix": "^10.0.7"
"typescript": "5.3.3",
"yarn-audit-fix": "10.0.7"
},
"peerDependencies": {
"@nestjs/common": "^7.0.9 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^7.0.9 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@types/ejs": "^3.0.3",
"@types/pug": "2.0.6",
"ejs": "^3.1.2",
"handlebars": "^4.7.6",
"nodemailer": "^6.4.6",
"pug": "^3.0.1"
"@nestjs/common": ">=7.0.9",
"@nestjs/core": ">=7.0.9",
"@types/ejs": ">=3.0.3",
"@types/pug": ">=2.0.6",
"ejs": ">=3.1.2",
"handlebars": ">=4.7.6",
"nodemailer": ">=6.4.6",
"pug": ">=3.0.1"
}
}

0 comments on commit 9885780

Please sign in to comment.