-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 877 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 877 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
35
{
"name": "bolt-js-starter-template",
"version": "1.0.0",
"description": "A scaffold template for Slack apps",
"type": "module",
"main": "app.js",
"scripts": {
"dev": "node --watch app.js",
"lint": "npx @biomejs/biome check *.js listeners",
"lint:fix": "npx @biomejs/biome check --write *.js listeners",
"start": "node app.js",
"test": "node --test tests/**/*.spec.js"
},
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"bolt",
"slackapi"
],
"repository": {
"type": "git",
"url": "https://github.com/slack-samples/bolt-js-starter-template.git"
},
"bugs": {
"url": "https://github.com/slack-samples/bolt-js-starter-template/issues"
},
"dependencies": {
"@slack/bolt": "^4.6.0",
"dotenv": "~17.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10"
}
}