-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 833 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 833 Bytes
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
{
"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": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"start": "node app.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": "^4.7.2",
"dotenv": "^17.4.2",
"mongoose": "^9.6.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"ngrok": "^4.3.3"
}
}