forked from nest-modules/mailer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.86 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
{
"name": "@crizit/mailer",
"version": "2.1.0",
"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": {
"css-inline": "^0.10.4",
"glob": "10.3.3"
},
"optionalDependencies": {
"@types/ejs": "^3.1.2",
"@types/pug": "2.0.6",
"ejs": "^3.1.9",
"handlebars": "^4.7.8",
"pug": "^3.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-angular": "^17.7.0",
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/testing": "^10.1.3",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.197",
"@types/nodemailer": "^6.4.9",
"@types/pug": "2.0.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^14.0.0",
"nodemailer": "^6.9.4",
"nodemailer-mock": "2.0.1",
"prettier": "^3.0.2",
"reflect-metadata": "0.1.13",
"rimraf": "5.0.1",
"rxjs": "^7.8.1",
"standard-version": "9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "10.9.1",
"typescript": "^5.1.6",
"yarn-audit-fix": "^10.0.0"
},
"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"
}
}