forked from BigWhaleLabs/seal-cred-email
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.38 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
{
"name": "@big-whale-labs/ketl-email",
"version": "0.4.3",
"license": "MIT",
"files": [
"dist"
],
"prettier": "@big-whale-labs/prettier-config",
"scripts": {
"build": "tsc --skipLibCheck",
"distribute": "node dist/server.js",
"start": "tsc-watch --skipLibCheck --onSuccess 'node dist/server.js'",
"pretty": "prettier --check 'src/**/*.ts'",
"update": "yarn build && git add . && git commit -m 'update' && git push",
"lint": "yarn pretty && eslint --max-warnings 0 ./src/",
"release": "yarn build && np && git push",
"prepublishOnly": "yarn build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"np": {
"2fa": false,
"tests": false,
"cleanup": false,
"yarn": false
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@big-whale-labs/eslint-config-bwl": "^2.1.9",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.2.0",
"@types/express": "^4.17.14",
"@types/mjml-react": "^2.0.6",
"@types/nodemailer": "^6.4.13",
"@types/nodemailer-mailgun-transport": "^1.4.5",
"@types/sendmail": "^1.4.6",
"eslint": "^8.34.0",
"express": "^4.18.2",
"nodemailer": "^6.9.7",
"nodemailer-mailgun-transport": "^2.1.5",
"nodemon": "^2.0.20",
"np": "^7.7.0",
"prettier": "^2.8.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.3"
},
"dependencies": {
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"mjml": "^4.13.0",
"mjml-react": "^2.0.8",
"module-alias": "^2.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-support": "^0.5.21"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "[email protected]",
"description": "Ketl email templates",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/BigWhaleLabs/ketl-email.git"
},
"keywords": [
"emails"
],
"bugs": {
"url": "https://github.com/BigWhaleLabs/ketl-email/issues"
},
"homepage": "https://github.com/BigWhaleLabs/ketl-email#readme"
}