mirror of
https://github.com/Crazyco-xyz/48hr.email.git
synced 2025-07-01 22:47:09 +02:00
Bumps [validator](https://github.com/validatorjs/validator.js) to 13.11.0 and updates ancestor dependency [express-validator](https://github.com/express-validator/express-validator). These dependencies need to be updated together. Updates `validator` from 10.11.0 to 13.11.0 - [Release notes](https://github.com/validatorjs/validator.js/releases) - [Changelog](https://github.com/validatorjs/validator.js/blob/master/CHANGELOG.md) - [Commits](https://github.com/validatorjs/validator.js/compare/10.11.0...13.11.0) Updates `express-validator` from 5.3.1 to 7.0.1 - [Release notes](https://github.com/express-validator/express-validator/releases) - [Commits](https://github.com/express-validator/express-validator/compare/v5.3.1...v7.0.1) --- updated-dependencies: - dependency-name: validator dependency-type: indirect - dependency-name: express-validator dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "48hr.email",
|
|
"version": "1.0.0",
|
|
"private": false,
|
|
"scripts": {
|
|
"start": "node ./app.js",
|
|
"test": "xo",
|
|
"debug": "node --nolazy --inspect-brk=9229 ./app.js"
|
|
},
|
|
"dependencies": {
|
|
"array.prototype.flatmap": "^1.2.1",
|
|
"async-retry": "^1.2.3",
|
|
"compression": "^1.7.3",
|
|
"debug": "^2.6.9",
|
|
"express": "~4.19.2",
|
|
"express-validator": "^7.0.1",
|
|
"helmet": "^3.16.0",
|
|
"http-errors": "~1.6.2",
|
|
"imap-simple": "^4.3.0",
|
|
"lodash": "^4.17.13",
|
|
"mailparser": "^2.4.3",
|
|
"mem": "^4.2.0",
|
|
"mnemonist": "^0.27.2",
|
|
"moment": "^2.24.0",
|
|
"morgan": "~1.9.0",
|
|
"nodemailer": "^6.9.9",
|
|
"p-series": "^2.0.0",
|
|
"random-word": "^2.0.0",
|
|
"sanitize-html": "^2.12.1",
|
|
"socket.io": "^2.2.0",
|
|
"twig": "~0.10.3"
|
|
},
|
|
"devDependencies": {
|
|
"xo": "^0.24.0"
|
|
},
|
|
"xo": {
|
|
"semicolon": false,
|
|
"prettier": true,
|
|
"rules": {
|
|
"no-unused-vars": [
|
|
"error",
|
|
{
|
|
"argsIgnorePattern": "^_"
|
|
}
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": "public/javascripts/*.js",
|
|
"esnext": false,
|
|
"env": [
|
|
"browser"
|
|
],
|
|
"globals": [
|
|
"io"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "10.x"
|
|
}
|
|
}
|