forked from twilio-labs/function-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.53 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
94
95
96
{
"name": "function-templates",
"version": "1.0.0",
"private": true,
"description": "A set of useful Twilio Functions.",
"scripts": {
"test": "jest",
"new-template": "node _helpers/add-template.js",
"add-dependency": "npm install $npm_config_package --no-package-lock --prefix $npm_config_template && npm install --save-dev $npm_config_package",
"env-manifest": "node _helpers/generate-env-variable-manifest",
"ci:generate-manifest": "npm run env-manifest -- --write",
"lint": "eslint --ext js .",
"lint:all": "npm run lint -- --no-ignore",
"format": "prettier --write .",
"format:changed": "pretty-quick --branch main",
"format:check": "prettier --check .",
"prepare": "husky install",
"e2e": "turbo run e2e --parallel"
},
"author": "Twilio <[email protected]>",
"license": "MIT",
"devDependencies": {
"@google-cloud/dialogflow": "^4.1.0",
"@sendgrid/mail": "^7.6.0",
"@twilio-labs/runtime-helpers": "^0.1.2",
"@twilio-labs/serverless-api": "^1.1.0",
"@twilio/runtime-handler": "1.2.0",
"airtable": "^0.11.0",
"aws-sdk": "^2.925.0",
"basic-auth": "^2.0.1",
"common-tags": "^1.8.0",
"configure-env": "^2.0.0-1",
"copy-template-dir": "^1.4.0",
"crypto": "^1.0.1",
"cypress": "^9.2.0",
"eslint": "^5.16.0",
"eslint-config-twilio": "^1.34.2",
"get-port": "^6.0.0",
"googleapis": "^65.0.0",
"got": "^6.7.1",
"husky": "^6.0.0",
"inquirer": "^7.0.4",
"jest-cli": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.7.0",
"listr": "^0.14.3",
"log-symbols": "^3.0.0",
"mailgun.js": "^3.3.0",
"moment": "^2.29.2",
"node-fetch": "^2.6.7",
"prettier": "^2.3.0",
"pretty-quick": "^3.1.0",
"qrcode": "^1.5.0",
"stripe": "^8.20.0",
"tsscmp": "^1.0.6",
"turbo": "^1.0.24",
"twilio": "^3.75.1",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageThreshold": {
"./**/functions/**/*.js": {
"statements": 60,
"branches": 60
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/",
"/patient-appointment-management/",
"/video/"
],
"testPathIgnorePatterns": [
"/_helpers/",
"/node_modules/",
"cypress/"
]
},
"dependencies": {
"got": "^6.7.1"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"e2e": {
"dependsOn": []
}
}
},
"workspaces": [
"hello-world"
]
}