-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
44
45
46
47
48
{
"name": "pokebot",
"version": "2.0.0",
"description": "A Node based pokemon game for Slack",
"homepage": "https://github.com/Studnicky/pokebotv2#readme",
"main": "app/app.js",
"author": "Studnicky",
"license": "MIT",
"engines": {
"node": "5.1.0"
},
"scripts": {
"start": "node app/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Studnicky/pokebotv2.git"
},
"bugs": {
"url": "https://github.com/Studnicky/pokebotv2/issues"
},
"devDependencies": {
"gulp": "latest",
"gulp-util": "latest",
"gulp-sass": "latest",
"gulp-coffee": "latest",
"gulp-uglify": "latest",
"gulp-concat": "latest",
"gulp-connect": "latest"
},
"dependencies": {
"body-parser": "^1.14.0",
"botkit": "^0.0.5",
"cookie-parser": "^1.4.0",
"ejs": "^2.4.1",
"express": "^4.13.0",
"lodash": "^3.10.1",
"morgan": "^1.6.0",
"node-env-file": "^0.1.8",
"pg": "^4.4.3",
"pg-hstore": "^2.3.2",
"request": "^2.62.0",
"sequelize": "^3.14.2",
"serve-favicon": "^2.3.0",
"socket.io": "^1.3.7"
}
}