-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1016 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1016 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
36
37
38
39
{
"name": "bolt-ts-starter-template",
"version": "1.0.0",
"description": "A scaffold template for Slack apps",
"main": "dist/app.js",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node ./dist/app.js",
"lint": "npx @biomejs/biome check *.ts listeners tests",
"lint:fix": "npx @biomejs/biome check --write *.ts listeners tests",
"test": "npm run build && npm run lint && node --import tsx --test"
},
"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.7.2",
"dotenv": "~17.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}