-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.99 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
{
"name": "@techpivot/streaming-slack-notify",
"version": "0.0.0",
"description": "The definitive service for streaming GitHub action workflow jobs to Slack.",
"author": "TechPivot",
"license": "MIT",
"homepage": "https://github.com/techpivot/streaming-slack-notify#readme",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/techpivot/streaming-slack-notify.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint packages/**/src/**/*.ts",
"lint:fix": "eslint --fix packages/**/src/**/*.ts",
"format": "prettier --write -l **/*.{ts,js,json,yml,md,html} && terraform fmt -recursive ./terraform",
"format:check": "prettier -l **/*.{ts,js,json,yml,md,html} && terraform fmt -recursive -check ./terraform",
"build:lambda:github-webhook": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-github-webhook build",
"build:lambda:github-post-install": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-github-post-install build",
"build:lambda:slack-authorize": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-slack-authorize build",
"build:lambda:slack-webhook": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-slack-webhook build",
"build:server": "yarn workspace @techpivot/streaming-slack-notify-server build",
"build": "npm-run-all --parallel build:lambda:* build:*",
"dist:lambda:github-webhook": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-github-webhook dist",
"dist:lambda:github-post-install": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-github-post-install dist",
"dist:lambda:slack-authorize": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-slack-authorize dist",
"dist:lambda:slack-webhook": "yarn workspace @techpivot/streaming-slack-notify-api-lambda-slack-webhook dist",
"dist:server": "yarn workspace @techpivot/streaming-slack-notify-server dist",
"dist": "npm-run-all --parallel dist:lambda:* dist:server"
},
"keywords": [
"Streaming",
"Slack",
"Notify",
"GitHub",
"Actions"
],
"dependencies": {
"@octokit/auth-app": "^3.4.0",
"@octokit/rest": "^18.0.0",
"@slack/events-api": "^3.0.0",
"@slack/web-api": "^6.1.0",
"aws-sdk": "^2.888.0",
"crypto": "^1.0.1",
"faunadb": "^4.2.0",
"fp-ts": "^2.6.1",
"io-ts": "^2.2.4"
},
"devDependencies": {
"@jahed/terraform": "0.15.3",
"@octokit/types": "^6.12.2",
"@octokit/webhooks-types": "^3.73.1",
"@slack/types": "^2.0.0",
"@types/aws-lambda": "^8.10.75",
"@types/debug": "^4.1.5",
"@types/node": "^14.14.45",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vercel/ncc": "^0.28.3",
"cpy-cli": "^3.1.1",
"eslint": "^7.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.1.3",
"node-lambda": "^0.19.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"typescript": "^4.2.3"
}
}