-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"name": "github-app-slack-demo",
"version": "0.0.0-development",
"type": "module",
"private": true,
"description": "A minimal GitHub App that integrates with Slack",
"main": "index.js",
"scripts": {
"dev": "netlify dev --live --framework=\"#static\"",
"register-github-app": "node dev/scripts/register-github-app.js",
"verify": "node --env-file .env dev/scripts/verify.js",
"test": "c8 --100 ava \"test/**/*.test.js\"",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html",
"format": "prettier --write \"*.{js,json,md}\" \".github/**/*.yml\" \"netlify/functions/*/*.{js,json,md}\" \"dev/**/*.{js,json,md,yml}\" \"public/*.html\" \"test/**/*.js\""
},
"license": "MIT",
"dependencies": {
"@netlify/functions": "^2.8.1",
"@slack/bolt": "^3.21.1",
"envalid": "^8.0.0",
"octokit": "^4.0.2",
"pino": "^9.3.2"
},
"devDependencies": {
"ava": "^6.1.3",
"axios-mock-adapter": "^1.22.0",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"fetch-mock": "^10.1.1",
"netlify-cli": "^17.33.5",
"open-cli": "^8.0.0",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"register-github-app": "^2.0.2"
}
}