-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.71 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
{
"name": "calendartoslack",
"version": "1.0.0",
"description": "Sets your Slack status based on your Outlook calendar",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "serverless offline",
"test": "jest",
"debug": "export SLS_DEBUG=* && node --inspect ./node_modules/.bin/serverless offline --noTimeout --noPrependStageInUrl",
"debug-tests": "node --inspect ./node_modules/.bin/jest --runInBand --coverage false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hudl/CalendarToSlack.git"
},
"keywords": [
"slack",
"calendar",
"outlook"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hudl/CalendarToSlack/issues"
},
"homepage": "https://github.com/hudl/CalendarToSlack#readme",
"resolutions": {
"superagent": "^10.1.0",
"glob": "^11.0.0"
},
"devDependencies": {
"@slack/types": "2.14.0",
"@types/aws-lambda": "8.10.28",
"@types/aws-sdk": "2.7.0",
"@types/jest": "29.5.13",
"@types/node": "22.7.5",
"@types/simple-oauth2": "5.0.7",
"jest": "29.7.0",
"serverless": "3.39.0",
"serverless-offline": "13.6.0",
"serverless-plugin-include-dependencies": "6.1.1",
"serverless-plugin-typescript": "2.1.5",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.427.0",
"@aws-sdk/client-lambda": "^3.427.0",
"@aws-sdk/client-secrets-manager": "^3.427.0",
"@aws-sdk/lib-dynamodb": "^3.427.0",
"@microsoft/microsoft-graph-client": "3.0.7",
"@slack/web-api": "7.6.0",
"isomorphic-fetch": "3.0.0",
"simple-oauth2": "5.1.0",
"uuid": "^10.0.0"
}
}