-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 905 Bytes
/
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
{
"name": "bolt-js-slack-connect",
"version": "1.0.0",
"description": "This project aims to speed up the time to understand & implement automations using Slack Connect APIs.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"lint": "eslint --ext .js ."
},
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"bolt",
"slackapi"
],
"repository": {
"type": "git",
"url": "https://github.com/slack-samples/bolt-js-slack-connect.git"
},
"bugs": {
"url": "https://github.com/slack-samples/bolt-js-slack-connect/issues"
},
"dependencies": {
"@slack/bolt": "^3.8.1",
"dotenv": "^10.0.0",
"eslint-config-airbnb": "^19.0.4",
"mongoose": "^6.2.0",
"ngrok": "^4.3.0"
},
"devDependencies": {
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4"
}
}