-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "ubisoft-db-scraper",
"version": "0.1.0",
"description": "A bot that pulls data from the Ubisoft Connect Demux API",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"start:ts": "ts-node src/index.ts",
"start:db": "docker run --name mongodb -d -p 27017:27017 -v $(pwd)/db:/data/db mongo",
"docker:build": "docker build . -t ubisoft-db-scraper",
"docker:run": "docker run --rm -v $(pwd)/config:/config ubisoft-db-scraper",
"gen-configuration": "npx ts-node scripts/generate-configuration-types.ts",
"gen-store-configuration": "ts-node scripts/generate-store-configuration-types.ts"
},
"author": {
"name": "Charlie Laabs",
"url": "https://github.com/claabs"
},
"repository": {
"type": "git",
"url": "https://github.com/YoobieRE/ubisoft-db-scraper.git"
},
"keywords": [
"ubisoft",
"ubi",
"ubisoft connect",
"uplay",
"protobuf",
"protocol buffer",
"dmx",
"demux",
"database",
"scraper"
],
"license": "MIT",
"engines": {
"node": ">=16"
},
"files": [
"dist/src"
],
"dependencies": {
"@discordjs/builders": "^1.1.0",
"@discordjs/rest": "^1.1.0",
"@isaacs/ttlcache": "^1.2.0",
"debug": "^4.3.4",
"discord-api-types": "^0.37.8",
"discord.js": "^14.3.0",
"dotenv": "^16.0.1",
"fast-deep-equal": "^3.1.3",
"fs-extra": "^10.1.0",
"json-diff": "^0.9.0",
"jsonc-parser": "^3.1.0",
"just-group-by": "^2.1.1",
"mongoose": "^6.5.2",
"node-schedule": "^2.1.0",
"otpauth": "^8.0.2",
"p-queue": "^6.6.2",
"p-retry": "^4.6.2",
"phin": "^3.6.1",
"pino": "^8.4.0",
"pino-pretty": "^9.0.0",
"simple-git": "^3.12.0",
"source-map-support": "^0.5.21",
"typed-emitter": "^2.1.0",
"ubisoft-demux": "^1.10906.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/json-diff": "^0.9.0",
"@types/node": "^16.11.47",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"quicktype-core": "^6.0.62",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}