-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "@hodfords/nestjs-mailer",
"version": "10.1.2",
"description": "Simplifies sending emails in NestJS apps",
"main": "index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cp package.json dist && cp README.md dist && cp .npmrc dist",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "eslint \"lib/**/*.ts\" --fix --max-warnings 0",
"prepare": "is-ci || husky",
"version": "auto-changelog && git add CHANGELOG.md",
"release:patch": "git add CHANGELOG.md && npm version patch --tag-version-prefix='' -f -m 'chore: release to %s'",
"release:push": "git push --no-verify && git push --tags --no-verify",
"lint-staged": "lint-staged",
"cspell": "cspell"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hodfords-solutions/nestjs-mailer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hodfords-solutions/nestjs-mailer/issues"
},
"homepage": "https://github.com/hodfords-solutions/nestjs-mailer#readme",
"dependencies": {
"handlebars": "4.7.8",
"mjml": "4.15.3",
"nodemailer": "6.9.15",
"validator": "13.12.0",
"eslint-config-prettier": "^9.1.0"
},
"devDependencies": {
"@hodfords/nestjs-eslint-config": "^10.0.4",
"@hodfords/nestjs-prettier-config": "^10.0.1",
"@nestjs/bull": "10.2.1",
"@nestjs/common": "10.4.4",
"@nestjs/core": "10.4.4",
"@types/lodash": "4.17.7",
"@types/mjml": "4.7.4",
"@types/node": "22.5.5",
"@types/nodemailer": "6.4.16",
"@types/validator": "13.12.2",
"auto-changelog": "2.5.0",
"bull": "4.16.3",
"cspell": "8.14.4",
"eslint": "9.11.0",
"husky": "9.1.6",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"lodash": "4.17.21",
"prettier": "3.3.3",
"reflect-metadata": "0.2.2",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"typescript": "5.6.2"
}
}