forked from seratch/bolt-on-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 915 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
37
38
39
{
"name": "release-gacha-heroku",
"version": "0.0.4",
"description": "Release gacha heroku",
"main": "index.js",
"scripts": {
"start": "npm run build && node lib/index.js",
"local": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/stafes/release-gacha-heroku.git"
},
"keywords": [
"Slack",
"Bolt",
"Heroku"
],
"author": "sori",
"license": "MIT",
"bugs": {
"url": "https://github.com/stafes/release-gacha-heroku/issues"
},
"dependencies": {
"@slack/bolt": "^3.1.1",
"@types/node": "^12.12.47",
"axios": "^0.19.2",
"knex": "^0.20.15",
"nodemon": "^1.19.4",
"pg": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@slack/web-api": "^6.0.0"
}
}