-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1001 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1001 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",
"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.5.0",
"dotenv": "~17.2.3"
},
"devDependencies": {
"@biomejs/biome": "^2.2.2",
"@slack/cli-hooks": "^1.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^4.0.18"
}
}