forked from nest-modules/mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@nestjs-modules/mailer",
"version": "1.8.2",
"private": false,
"description": "NestJS - a mailer module (@mailer)",
"keywords": [
"nest",
"nodemailer",
"mailer",
"nodejs"
],
"homepage": "https://github.com/nest-modules/mailer#readme",
"bugs": {
"url": "https://github.com/nest-modules/mailer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nest-modules/mailer.git"
},
"license": "MIT",
"author": "Nest Modules TM",
"contributors": [
"Cristiam Díaz <[email protected]>",
"Eduardo Leal <[email protected]>",
"Juan Echeverry <[email protected]>",
"Paweł Partyka <[email protected]>",
"Yanarp"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.json",
"deploy": "sh ./publish.sh",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"audit:convert": "yarn-audit-fix --flow=convert",
"audit:patch": "yarn-audit-fix --flow=patch",
"audit:fix": "npx yarn-audit-fix --package-lock-only=false --force --legacy-peer-deps --flow=convert",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"release": "standard-version",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"glob": "8.1.0",
"inline-css": "4.0.2",
"mjml": "^4.13.0",
"preview-email": "3.0.7"
},
"optionalDependencies": {
"@types/ejs": "^3.0.3",
"@types/pug": "2.0.6",
"ejs": "^3.1.2",
"handlebars": "^4.7.6",
"pug": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/glob": "^8.0.0",
"@types/inline-css": "3.0.1",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/nodemailer": "^6.4.7",
"@types/pug": "2.0.6",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemailer": "^6.8.0",
"nodemailer-mock": "1.5.12",
"prettier": "^2.8.1",
"reflect-metadata": "0.1.13",
"rimraf": "4.1.2",
"rxjs": "^7.8.0",
"standard-version": "9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "10.9.1",
"typescript": "^4.9.4",
"yarn-audit-fix": "^9.3.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"
}
}