generated from slack-samples/bolt-js-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 916 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-ts-starter-template",
"version": "1.0.0",
"description": "A scaffold template for Slack apps",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node ./dist/app.js",
"lint": "npx @biomejs/biome check *.ts listeners",
"lint:fix": "npx @biomejs/biome check --write *.ts listeners",
"test": "npm run build && npm run lint"
},
"author": "Slack Technologies, LLC",
"license": "MIT",
"keywords": [
"slack",
"bolt",
"slackapi",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/slack-samples/bolt-ts-starter-template.git"
},
"bugs": {
"url": "https://github.com/slack-samples/bolt-ts-starter-template/issues"
},
"dependencies": {
"@slack/bolt": "^4.2.0",
"dotenv": "~16.4.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"typescript": "^5.7.2"
}
}