-
Notifications
You must be signed in to change notification settings - Fork 315
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.58 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.58 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
75
{
"name": "opendota-core",
"description": "Open source Dota data platform",
"version": "31.1.0",
"license": "MIT",
"scripts": {
"start": "node index.ts",
"test": "node --test --test-concurrency 1 test/test.ts",
"build": "npm run typecheck",
"typecheck": "tsc --project tsconfig.json",
"lint": "eslint .",
"lintfix": "eslint . --fix",
"request": "curl -X POST localhost:5000/api/request/7490235544",
"fullhistory": "curl -X POST localhost:5000/api/players/88367253/refresh",
"gceconfig": "curl -H \"Metadata-Flavor: Google\" -L http://metadata.google.internal/computeMetadata/v1/project/attributes/env > /usr/src/.env",
"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 .",
"dockerbuild:retriever": "sudo docker build -t odota/retriever -f Dockerfile.retriever .",
"psql": "docker exec -it odota-postgres psql -U postgres -d yasp",
"prettier": "npx prettier --write .",
"updateproto": "node dev/updateProtos.ts",
"dpdm": "npx dpdm everything.ts",
"madge": "npx madge everything.ts --image deptree.svg"
},
"dependencies": {
"@bradenmacdonald/s3-lite-client": "^0.9.6",
"ansi-colors": "^4.1.3",
"axios": "^1.13.2",
"body-parser": "^1.20.3",
"cassandra-driver": "^4.8.0",
"compression": "^1.8.1",
"cookie-session": "^2.1.1",
"cors": "^2.8.5",
"dotaconstants": "^10.8.0",
"express": "^5.2.1",
"http-proxy": "^1.18.1",
"ioredis": "^5.8.2",
"json-bigint": "^1.0.0",
"knex": "^3.1.0",
"moment": "^2.30.1",
"passport": "^0.7.0",
"passport-steam-openid": "^1.1.9",
"pg": "^8.16.3",
"pg-query-stream": "^4.10.3",
"pm2": "^6.0.14",
"protobufjs": "^7.5.4",
"steam-user-odota": "^5.2.11",
"stripe": "^9.16.0",
"vdf-parser": "^1.2.1"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@types/body-parser": "^1.19.6",
"@types/compression": "^1.8.1",
"@types/cookie-session": "^2.0.49",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/http-proxy": "^1.17.17",
"@types/json-bigint": "^1.0.4",
"@types/node": "^25.0.3",
"@types/passport": "^1.0.17",
"@types/pg": "^8.16.0",
"@types/supertest": "^6.0.3",
"nock": "^13.5.6",
"supertest": "^7.1.4",
"typescript": "^5.9.3"
},
"type": "module",
"repository": {
"type": "git",
"url": "http://github.com/odota/core"
}
}