-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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
{
"name": "warotan",
"version": "0.0.0",
"private": true,
"author": "vipb <hiroflighter@gmail.com>",
"description": "vipits slack bot",
"engines": {
"node": "14.x"
},
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && babel src -d dist",
"deploy": "git push heroku master",
"start": "npm run build && bin/hubot --require dist"
},
"dependencies": {
"@slack/client": "^5.0.2",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.5",
"cron": "^1.8.2",
"hubot": "^3.3.1",
"hubot-diagnostics": "^1.0.0",
"hubot-google-images": "^0.2.7",
"hubot-help": "^1.0.1",
"hubot-redis-brain": "^1.0.0",
"hubot-rules": "^1.0.0",
"hubot-scripts": "^2.17.2",
"hubot-slack": "^4.8.1",
"iconv": "^3.0.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1"
}
}