-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
{
"name": "@deenruv/email-plugin",
"version": "1.0.16",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"templates/**/*",
"dev-mailbox.html"
],
"scripts": {
"watch": "tsc -p ./tsconfig.build.json --watch",
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest --config vitest.config.mts --run"
},
"homepage": "https://deenruv.com/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@deenruv/common": "workspace:^",
"@nestjs/common": "^10.3.10",
"@types/nodemailer": "^6.4.9",
"dateformat": "^3.0.3",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"mjml": "^4.14.1",
"nodemailer": "^6.9.4",
"react-email": "4.0.3",
"@react-email/components": "^0.0.35",
"@react-email/render": "1.0.5"
},
"peerDependencies": {
"@deenruv/core": "^1.0.0",
"@nestjs/core": "^10.3.10"
},
"devDependencies": {
"@deenruv/core": "workspace:^",
"@types/dateformat": "^3.0.1",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/mjml": "^4.7.4",
"rimraf": "^5.0.5",
"typescript": "5.3.3",
"@types/react": "^19.0.0"
}
}