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
74 lines (74 loc) · 2.33 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.33 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
66
67
68
69
70
71
72
73
74
{
"name": "opendota-core",
"description": "Open source Dota data platform",
"version": "18.0.0",
"license": "MIT",
"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",
"build": "npm install",
"lint": "eslint . --ext .js,.jsx --ignore-path .gitignore",
"lintfix": "eslint . --ext .js,.jsx --ignore-path .gitignore --fix",
"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",
"dockerbuild": "sudo docker build -t odota/core .",
"reparse": "cat matches.csv | xargs -n1 node dev/getMatch.js",
"createAccounts": "node dev/createAccounts.js > accounts.log",
"psql": "docker exec -it odota-postgres psql -U postgres -d yasp",
"prettier": "prettier --single-quote --write ."
},
"repository": {
"type": "git",
"url": "http://github.com/odota/core"
},
"dependencies": {
"@elastic/elasticsearch": "^7.17.0",
"async": "^2.6.1",
"body-parser": "^1.19.0",
"cassandra-driver": "^4.4.0",
"compression": "^1.7.4",
"cookie-session": "2.0.0-beta.3",
"cors": "^2.8.5",
"dota2": "github:odota/node-dota2",
"dotaconstants": "^7.10.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"extend": "^3.0.2",
"http-proxy": "^1.18.1",
"json-bigint": "^0.3.0",
"JSONStream": "^1.3.5",
"knex": "^0.21.12",
"long": "^4.0.0",
"moment": "^2.24.0",
"nock": "^13.0.5",
"passport": "^0.4.1",
"passport-steam": "^1.0.12",
"pg": "^8.2.1",
"pg-query-stream": "^3.1.1",
"pm2": "^4.2.1",
"protobufjs": "^5.0.3",
"redis": "^2.8.0",
"request": "^2.88.2",
"request-ip": "^2.1.3",
"simple-vdf": "^1.1.1",
"steam": "github:odota/node-steam-npm",
"steam-resources": "github:odota/node-steam-resources",
"stripe": "^5.8.0",
"supertest": "^4.0.2",
"uuid": "^3.3.3"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^8.2.1",
"prettier": "^2.0.5"
},
"engines": {
"node": "16"
}
}