This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.17 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@distributeaid/twilio-integration",
"version": "0.0.0-development",
"description": "Integrates Twilio as a chat provider, built using AWS serverless components.",
"scripts": {
"test": "jest",
"test:e2e": "node dist/feature-runner/run-features.js ./features --print-results --progress",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"postinstall": "check-node-version --package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/distributeaid/twilio-integration.git"
},
"keywords": [
"Distribute Aid",
"twilio",
"chat",
"aws",
"serverless"
],
"author": "Distribute Aid | https://distributeaid.org/",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/distributeaid/twilio-integration/issues"
},
"homepage": "https://github.com/distributeaid/twilio-integration#readme",
"devDependencies": {
"@aws-cdk/aws-apigateway": "1.62.0",
"@aws-cdk/aws-apigatewayv2": "1.62.0",
"@aws-cdk/aws-appsync": "1.62.0",
"@aws-cdk/aws-dynamodb": "1.62.0",
"@aws-cdk/aws-iam": "1.62.0",
"@aws-cdk/aws-sns": "1.62.0",
"@aws-cdk/core": "1.62.0",
"@bifravst/cloudformation-helpers": "3.1.30",
"@bifravst/code-style": "8.0.62",
"@bifravst/e2e-bdd-test-runner": "2.6.1",
"@bifravst/package-layered-lambdas": "3.10.23",
"@commitlint/cli": "9.1.2",
"@commitlint/config-angular": "9.1.2",
"@types/aws-lambda": "8.10.62",
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/jest": "26.0.13",
"@types/jsonwebtoken": "8.5.0",
"@types/node-fetch": "2.5.7",
"@types/uuid": "8.3.0",
"aws-cdk": "1.62.0",
"aws-sdk": "2.747.0",
"chalk": "4.1.0",
"check-node-version": "4.0.3",
"commander": "6.1.0",
"husky": "4.3.0",
"jest": "26.4.2",
"prettier": "2.1.1",
"ts-jest": "26.3.0",
"ts-loader": "8.0.3",
"twilio-chat": "4.0.0",
"typescript": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml,js}": [
"prettier --write"
]
},
"dependencies": {
"@aws-sdk/client-dynamodb-v2-node": "0.1.0-preview.2",
"@bifravst/random-words": "4.2.1",
"fp-ts": "2.8.2",
"io-ts": "2.2.10",
"jsonwebtoken": "8.5.1",
"node-fetch": "2.6.1",
"parse-multipart-data": "1.0.0",
"snyk": "1.389.0",
"twilio": "3.49.1",
"uuid": "8.3.0"
},
"jest": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".+\\.spec\\.ts$",
"coverageReporters": [
"html",
"lcov"
],
"globals": {
"ts-jest": {
"diagnostics": true
}
}
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"snyk": true,
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}