-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
115 lines (115 loc) · 3.21 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
107
108
109
110
111
112
113
114
115
{
"name": "@nestjs-modules/mailer",
"version": "2.0.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 <c.diaz@udla.edu.co>",
"Eduardo Leal <eduardolleal@icloud.com>",
"Juan Echeverry <e.juandav@gmail.com>",
"Paweł Partyka <partyka95@icloud.com>",
"Alexandre TITEUX <alexandretiteux@gmail.com>",
"Yanarp",
"Joao vitor FREZYN <00001097715413SP@al.educacao.sp.gov.br>"
],
"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": {
"@css-inline/css-inline": "0.14.1",
"glob": "10.3.12"
},
"optionalDependencies": {
"@types/ejs": "^3.1.5",
"@types/pug": "^2.0.10",
"@types/mjml": "^4.7.4",
"ejs": "^3.1.10",
"handlebars": "^4.7.8",
"mjml": "^5.0.0-alpha.4",
"pug": "^3.0.2",
"liquidjs": "^10.11.1",
"preview-email": "^3.0.19"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-angular": "19.3.0",
"@nestjs/common": "10.3.8",
"@nestjs/core": "10.3.8",
"@nestjs/testing": "10.3.8",
"@types/glob": "8.1.0",
"@types/jest": "29.5.12",
"@types/lodash": "4.17.0",
"@types/nodemailer": "6.4.14",
"@types/pug": "2.0.10",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"husky": "9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"nodemailer": "6.9.13",
"nodemailer-mock": "2.0.6",
"prettier": "3.2.5",
"preview-email": "3.0.19",
"reflect-metadata": "0.2.2",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"standard-version": "9.5.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.5",
"yarn-audit-fix": "10.0.7"
},
"peerDependencies": {
"@nestjs/common": ">=7.0.9",
"@nestjs/core": ">=7.0.9",
"@types/ejs": ">=3.0.3",
"@types/pug": ">=2.0.6",
"@types/mjml": ">=4.7.4",
"nodemailer": ">=6.4.6",
"ejs": ">=3.1.2",
"handlebars": ">=4.7.6",
"mjml": ">=4.15.3",
"pug": ">=3.0.1",
"liquidjs": ">=10.8.2",
"preview-email": ">=3.0.19"
}
}