-
Notifications
You must be signed in to change notification settings - Fork 303
/
package.json
94 lines (94 loc) · 3.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "opendota-core",
"description": "Open source Dota data platform",
"version": "25.0.0",
"license": "MIT",
"scripts": {
"start": "tsx index",
"test": "NODE_ENV=test mocha test/test.ts --exit --node-option import=tsx",
"build": "npm install && npm run tsc",
"tsc": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint . --ext .ts,.mts --ignore-path .gitignore",
"lintfix": "eslint . --ext .ts,.mts --ignore-path .gitignore --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": "prettier --write ."
},
"prettier": {
"singleQuote": true
},
"repository": {
"type": "git",
"url": "http://github.com/odota/core"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.485.0",
"@elastic/elasticsearch": "^7.17.0",
"ansi-colors": "^4.1.3",
"async": "^3.2.5",
"axios": "^1.6.5",
"body-parser": "^1.20.2",
"cassandra-driver": "^4.4.0",
"compression": "^1.7.4",
"cookie-session": "2.0.0-beta.3",
"cors": "^2.8.5",
"dotaconstants": "^8.12.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-proxy": "^1.18.1",
"ioredis": "^5.3.2",
"json-bigint": "^1.0.0",
"knex": "^3.1.0",
"moment": "^2.30.1",
"nock": "^13.4.0",
"passport": "^0.4.1",
"passport-steam": "^1.0.18",
"pg": "^8.11.3",
"pg-query-stream": "^4.5.3",
"protobufjs": "^7.2.5",
"request": "^2.88.2",
"simple-vdf": "^1.1.1",
"steam-user": "^5.0.4",
"stripe": "^9.12.0",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@types/async": "^3.2.24",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/cookie-session": "^2.0.48",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/http-proxy": "^1.17.14",
"@types/json-bigint": "^1.0.4",
"@types/mocha": "^10.0.6",
"@types/passport": "^1.0.16",
"@types/passport-steam": "^1.0.5",
"@types/pg": "^8.10.9",
"@types/qs": "^6.9.11",
"@types/request": "^2.48.12",
"@types/steam-user": "^4.26.8",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"pm2": "^5.3.0",
"prettier": "^3.1.1",
"supertest": "^6.3.3",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}