-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
94 lines (94 loc) · 3.48 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": "epicgames-freegames-node",
"version": "5.1.0",
"description": "Use Epic's web APIs to login and redeem free games.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "vite-node src/index.ts",
"start:ts": "vite-node src/index.ts",
"start:debug": "DEBUG=puppeteer-extra-plugin:portal* vite-node src/index.ts",
"entrypoint-config": "node dist/src/entrypoint-config.js",
"build": "rimraf dist && tsc",
"lint": "tsc --noEmit && eslint .",
"docker:build": "docker build . -t charlocharlie/epicgames-freegames-node:latest --target deploy --build-arg=\"COMMIT_SHA=$(git rev-parse HEAD)\"",
"docker:build-debian": "docker build . -t charlocharlie/epicgames-freegames-node:debian --target deploy --file Dockerfile.debian",
"docker:build-dev": "docker build . -t charlocharlie/epicgames-freegames:dev --target deploy",
"docker:run": "docker run --rm -ti -v $(pwd)/config:/usr/app/config -p 3225:3225 -p 3001:3001 -e DEBUG=puppeteer-extra-plugin:portal* charlocharlie/epicgames-freegames-node:latest",
"docker:run-debian": "docker run --rm -ti -v $(pwd)/config:/usr/app/config -p 3225:3225 -p 3001:3001 charlocharlie/epicgames-freegames-node:debian",
"docker:buildx": "docker buildx build --platform=linux/arm64,linux/arm/v7 . -t charlocharlie/epicgames-freegames-node:latest --target deploy",
"docs": "typedoc --out docs src/common/config/classes.ts"
},
"dependencies": {
"axios": "^1.6.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cron-parser": "^4.9.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-async-handler": "^1.2.0",
"filenamify": "^6.0.0",
"fs-extra": "^11.2.0",
"hashids": "^2.3.0",
"json5": "^2.2.3",
"localtunnel": "npm:@security-patched/localtunnel@^2.0.2-secpatched.3",
"nodemailer": "^6.9.11",
"object-assign-deep": "^0.4.0",
"open": "^10.0.4",
"otpauth": "^9.2.2",
"p-queue": "^8.0.1",
"p-timeout": "^6.1.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"ps-list": "^8.1.1",
"puppeteer": "23.10",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"reflect-metadata": "^0.2.1",
"rimraf": "^5.0.5",
"set-cookie-parser": "^2.6.0",
"tough-cookie": "^4.1.3",
"tough-cookie-file-store": "^2.0.3",
"url-join": "^5.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@tsconfig/strictest": "^2.0.3",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/localtunnel": "^2.0.4",
"@types/node": "^18.19.20",
"@types/nodemailer": "^6.4.14",
"@types/object-assign-deep": "^0.4.3",
"@types/set-cookie-parser": "^2.4.7",
"@types/tough-cookie-file-store": "^2.0.4",
"@types/url-join": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typedoc": "^0.25.9",
"typescript": "^5.3.3",
"vite-node": "^1.3.1"
},
"overrides": {
"localtunnel": {
"axios": "~1.7.0"
}
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/claabs/epicgames-freegames-node.git"
},
"author": "Charlie Laabs",
"license": "MIT"
}