This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.79 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": "@netlify/plugin-emails",
"version": "0.0.30",
"description": "A build plugin that creates an email handler and processes requests to send emails",
"main": "./lib/index.js",
"files": [
"lib/**/*",
"src/**/*",
"manifest.yml"
],
"types": "index.d.ts",
"dependencies": {
"@netlify/functions": "^1.2.0",
"@sendgrid/mail": "^7.7.0",
"cheerio": "^1.0.0-rc.12",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"mailgun.js": "^8.0.1",
"node-fetch": "^3.2.10",
"path": "^0.12.7",
"postmark": "^3.0.14",
"tslib": "^2.4.0"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"watch": "tsc --project tsconfig.build.json --watch",
"test": "jest",
"prepare": "husky install"
},
"keywords": [
"emails",
"netlify-plugin",
"email"
],
"author": "Lewis Thorley",
"contributors": [
"Lewis Thorley"
],
"license": "MIT",
"engines": {
"node": ">= 16.0.0",
"npm": ">= 7.10.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@netlify/eslint-config-node": "^6.0.0",
"@types/jest": "^29.1.1",
"@types/lodash": "^4.14.186",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-jest": "^29.1.2",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.0",
"jest": "^29.1.2",
"lint-staged": "^13.0.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "*"
},
"postinstall": "husky install",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
}
}