-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 999 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
{
"name": "slackbot-starter",
"version": "0.0.1",
"description": "A starter for creating Slack bots",
"main": "dist/index.js",
"repository": "https://github.com/tomfa/slackbot-starter",
"author": "Tomas Fagerbekk <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc -p .",
"dev": "npm run build && concurrently -n compile,bot \"tsc --incremental -w -p .\" \"nodemon --watch dist --watch .env\"",
"start": "node dist/index.js",
"prettier": "prettier --single-quote --trailing-comma all --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@slack/bolt": "^3.12.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"node-fetch": "^2.6.7",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/node-fetch": "^2.6.2",
"concurrently": "^7.6.0",
"husky": "^4.2.5",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
}
}