-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 919 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 919 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
30
31
32
33
34
35
36
{
"name": "nerd-bot",
"displayName": "Nerd Bot",
"description": "Hah Nerds...",
"version": "0.1.0",
"author": {
"name": "Jared Prather",
"url": "http://jaredprather.com"
},
"license": "Apache 2.0",
"engines": {
"node": "~0.11.13"
},
"scripts": {
"web": "node --harmony app.js",
"web-dev": "nodemon --harmony -e js,json,css,hbs app.js"
},
"development": {
"port": 3000
},
"production": {
"localBaseUrl": "https://mint-nerdbot.herokuapp.com",
"redisEnv": "REDISCLOUD_URL",
"mongoEnv": "MONGOLAB_URI",
"hearthstoneApiKey": "HEARTHSTONE_API_KEY",
"port": "$PORT"
},
"dependencies": {
"ac-koa": "^0.2.6",
"ac-koa-hipchat": "^0.2.14",
"bunyan": "^1.0.0",
"handlebars": "^2.0.0",
"rest":"^1.2.0",
"underscore":"^1.7.0"
}
}