-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "@squareboat/nest-mailman",
"version": "1.0.5",
"description": "📮 The mailer package for your NestJS Applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nestjs",
"nodemailer",
"nestjs-mail",
"nestjs-mailing",
"nestjs-mailer",
"nestjs-mailman"
],
"repository": {
"type": "git",
"url": "https://github.com/squareboat/nest-mailman.git"
},
"bugs": {
"url": "https://github.com/squareboat/nest-mailman/issues"
},
"homepage": "https://github.com/squareboat/nest-mailman",
"author": "Vinayak Sarawagi <vinayaksarawagi25@gmail.com>",
"private": false,
"license": "MIT",
"scripts": {
"postinstall": "node copymailman.js",
"build": "rm -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "jest --config=jest.json",
"test:cov": "jest --config=jest.json --coverage",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch"
},
"devDependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@types/mjml": "^4.7.0",
"@types/nodemailer": "^6.4.7",
"@types/react": "^18.0.28",
"typescript": "^4.9.5"
},
"dependencies": {
"@faire/mjml-react": "^3.1.2",
"app-root-path": "^3.1.0",
"fs-extra": "^11.1.0",
"mjml": "^4.7.1",
"nodemailer": "^6.9.1",
"picocolors": "^1.0.0",
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0"
}
}