-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 859 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 859 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
{
"name": "catbot",
"version": "1.1.0",
"description": "Catbot",
"main": "catbot.js",
"dependencies": {
"babel-cli": "6.16.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-function-bind": "6.8.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2017": "6.16.0",
"body-parser": "^1.17.2",
"botkit": "0.2.2",
"express": "4.14.0",
"markovchain": "^1.0.2",
"mongoose": "^4.10.6",
"node-schedule": "1.1.1",
"promisify-node": "0.4.0"
},
"scripts": {
"build": "babel *.js */*.js -d lib",
"start": "npm run build && node lib/sackbot.js",
"deploy": "git push -f heroku master && npm run restore && heroku logs --tail",
"kill": "heroku ps:scale web=0",
"restore": "heroku ps:scale web=1"
},
"author": "Eric Wyler <ewyler@gmail.com>",
"license": "ISC"
}