-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "mailess",
"version": "0.0.12",
"description": "Send mail, less",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "distle/index.js",
"files": [
"dist"
],
"repository": "https://github.com/telostat/mailess",
"license": "MIT",
"keywords": [],
"scripts": {
"start": "nodemon src/index.ts",
"build": "npm run clean && webpack && npm run docs",
"test": "jest --coverage",
"test:ci": "cross-env CI=1 jest",
"docs": "typedoc",
"clean": "rm -rf dist test docs build",
"prepare": "husky install"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"express": "^4.21.1",
"handlebars": "^4.7.8",
"helper-markdown": "^1.0.0",
"html-minifier-terser": "^7.2.0",
"html-to-text": "^9.0.5",
"mjml": "^4.15.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"sha.js": "^2.4.11",
"terser": "^5.36.0",
"typescript": "^5.6.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@eslint/js":"^9.14.0",
"@eslint/eslintrc":"^3.1.0",
"@types/express": "^5.0.0",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.14",
"@types/mjml": "^4.7.4",
"@types/multer": "^1.4.12",
"@types/node": "^22.8.7",
"@types/nodemailer": "^6.4.16",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"codecov": "^3.8.3",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"src/**/*.ts": [
"./node_modules/.bin/prettier --write",
"./node_modules/.bin/eslint"
]
}
}