forked from odota/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "opendota-core",
"description": "Open source Dota data platform",
"version": "9.1.0",
"license": "GPL-3.0",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "NODE_ENV=test test/run.sh",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"ncu": "npm-check-updates -a",
"mocha": "NODE_ENV=test mocha",
"build": "npm install && npm run lintnofix",
"lint": "eslint . --ext .js,.jsx --fix",
"lintnofix": "eslint . --ext .js,.jsx",
"rediskeys": "redis-cli keys '*' | cut -d':' -f1 | sort | uniq -c",
"resetpicks": "redis-cli keys 'picks_*' | xargs redis-cli del",
"resetrankings": "redis-cli keys 'hero_rankings*' | xargs redis-cli del",
"dockerbuild": "sudo docker build -t odota/core .",
"reparse": "cat matches.csv | xargs -n1 node tasks/getMatch.js"
},
"repository": {
"type": "git",
"url": "http://github.com/odota/core"
},
"dependencies": {
"JSONStream": "^1.2.1",
"async": "^2.1.2",
"big-number": "^0.4.0",
"bull": "^1.1.2",
"cassandra-driver": "^3.1.6",
"compression": "^1.6.2",
"cookie-session": "2.0.0-alpha.2",
"cors": "^2.8.1",
"dota2": "^4.1.0",
"dotaconstants": "^3.6.0",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"http-proxy": "^1.15.2",
"knex": "^0.12.6",
"moment": "^2.16.0",
"nock": "^9.0.2",
"passport": "^0.3.2",
"passport-steam": "^1.0.7",
"pg": "^6.1.0",
"pg-query-stream": "^1.0.0",
"pm2": "^2.1.5",
"protobufjs": "^5.0.1",
"redis": "^2.6.3",
"request": "^2.79.0",
"request-progress": "^2.0.1",
"simple-vdf": "^1.1.0",
"steam": "^1.4.0",
"steam-user": "^3.13.1",
"supertest": "^2.0.1"
},
"devDependencies": {
"eslint": "^3.10.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.1.2"
},
"engines": {
"node": "6.9.0"
}
}