This repository was archived by the owner on Sep 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"name": "@enricoemiro/mailer",
"version": "2.2.1",
"description": "A simple NestJS mailer module based on NodeMailer.",
"license": "MIT",
"private": false,
"author": "Enrico Emiro",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"nest",
"nestjs",
"nestjs mailer",
"nodemailer",
"mailer",
"nodejs"
],
"scripts": {
"prepare": "husky install",
"build": "rimraf ./dist && tsc -p ./tsconfig.build.json",
"format": "prettier --write --no-error-on-unmatched-pattern \"lib/**/*.ts\"",
"lint": "eslint \"lib/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"ci": "yarn install --frozen-lockfile --ignore-scripts"
},
"dependencies": {
"nodemailer": "^6.7.5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
"@nestjs/platform-express": "^8.4.5",
"@nestjs/testing": "^8.4.4",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "28.1.6",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"ts-jest": "^28.0.1",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enricoemiro/mailer.git"
},
"bugs": {
"url": "https://github.com/enricoemiro/mailer/issues"
},
"homepage": "https://github.com/enricoemiro/mailer#readme"
}