forked from odota/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.94 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.94 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "opendota-core",
"description": "Open source Dota data platform",
"version": "17.1.0",
"license": "GPL-3.0",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "NODE_ENV=test mocha --exit",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"ncu": "npm-check-updates -a",
"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",
"resetrecords": "redis-cli keys 'records*' | xargs redis-cli del",
"resetqueue": "redis-cli keys 'bull*' | xargs redis-cli del",
"dockerbuild": "sudo docker build -t odota/core .",
"reparse": "cat matches.csv | xargs -n1 node dev/getMatch.js",
"createAccounts": "node dev/createAccounts.js > accounts.log"
},
"repository": {
"type": "git",
"url": "http://github.com/odota/core"
},
"dependencies": {
"JSONStream": "^1.2.1",
"async": "^2.5.0",
"cassandra-driver": "^3.2.2",
"compression": "^1.6.2",
"cookie-session": "2.0.0-beta.3",
"cors": "^2.8.1",
"dota2": "^5.0.1",
"dotaconstants": "^5.15.0",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"http-proxy": "^1.15.2",
"knex": "^0.13.0",
"long": "^3.2.0",
"moment": "^2.17.0",
"nock": "^9.0.9",
"passport": "^0.3.2",
"passport-steam": "^1.0.7",
"pg": "^7.3.0",
"pg-query-stream": "^1.0.0",
"pm2": "^2.5.0",
"redis": "^2.6.3",
"request": "^2.79.0",
"simple-vdf": "^1.1.0",
"steam": "^1.4.0",
"supertest": "^3.0.0",
"uuid": "^3.1.0",
"ws": "^3.0.0"
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.6.0",
"mocha": "^4.0.1"
},
"engines": {
"node": "8.9.0"
}
}