forked from seratch/slack-weather-radar-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 KB
/
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
40
41
42
43
{
"name": "slack-weather-radar-map",
"version": "1.0.0",
"description": "Bolt app which runs on 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/seratch/slack-weather-radar-map.git"
},
"keywords": [
"Slack",
"Bolt",
"Heroku"
],
"author": "Kazuhiro Sera @seratch",
"license": "MIT",
"bugs": {
"url": "https://github.com/seratch/slack-weather-radar-map/issues"
},
"homepage": "https://github.com/seratch/slack-weather-radar-map#readme",
"dependencies": {
"@slack/bolt": "^1.4.0",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^12.0.3",
"axios": "^0.19.0",
"canvas": "^2.5.0",
"gifencoder": "^2.0.1",
"moment-timezone": "^0.5.26",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"ts-node": "^8.2.0",
"typescript": "^3.4.5"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}