-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "contact-us-email-worker",
"version": "1.0.0",
"description": "Contact Us Email Cloudflare SendGrid Worker with Sentry & Google Recaptcha",
"main": "dist/worker.js",
"scripts": {
"build": "webpack",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"test": "jest --config jestconfig.json --verbose",
"test-watch": "jest --config jestconfig.json --verbose --watch",
"dev": "wrangler dev"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"jest": {
"setupFiles": [
"<rootDir>/test/env.vars.js"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^3.0.0",
"@types/jest": "^27.5.1",
"ts-jest": "^28.0.2",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-typescript": "^3.0.0",
"fetch-mock-jest": "^1.5.1",
"jest": "^28.1.0",
"node-fetch": "^3.2.0",
"prettier": "^2.3.0",
"service-worker-mock": "^2.0.5",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"toucan-js": "^2.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattferderer/contact-us-email-worker.git"
},
"keywords": [
"Contact",
"Page",
"Cloudflare",
"Worker",
"Google",
"Captcha",
"SendGrid",
"Sentry",
"TypeScript"
],
"author": "Matt Ferderer",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattferderer/contact-us-email-worker/issues"
},
"homepage": "https://github.com/mattferderer/contact-us-email-worker#readme"
}