forked from claabs/epicgames-freegames-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.03 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
95
{
"name": "epicgames-freegames-node",
"version": "3.0.0",
"description": "Use Epic's web APIs to login and redeem free games.",
"main": "src/index.ts",
"scripts": {
"install": "cd src/site/public && npm i",
"start": "node dist/src/index.js",
"start:ts": "cd src/site/public && npm run build && cd ../../.. && ts-node src/index.ts",
"build": "rm -rf dist && tsc && cd src/site/public && npm run build && cd ../../.. && npx copyfiles -E src/**/public/*.html src/**/public/*.bundle.js dist",
"lint": "tsc --noEmit && eslint **/*.ts && (cd src/site/public && npm run lint)",
"test": "jest",
"redeem": "ts-node commands.ts redeem",
"create": "ts-node commands.ts create",
"docker:build": "docker build . -t charlocharlie/epicgames-freegames-node:latest --target deploy",
"docker:build-test": "docker build . -t charlocharlie/epicgames-freegames-test:latest --target deploy"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-http-proxy": "^1.6.2",
"filenamify": "^4.1.0",
"got": "^11.1.3",
"jsdom": "^16.2.0",
"json5": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"nocache": "^2.1.0",
"nodemailer": "^6.4.16",
"object-assign-deep": "^0.4.0",
"open": "^8.0.4",
"otpauth": "^5.0.6",
"pino": "^5.17.0",
"pino-pretty": "^3.6.1",
"qs": "^6.9.4",
"set-cookie-parser": "^2.4.3",
"source-map-support": "^0.5.19",
"tough-cookie": "^4.0.0",
"tough-cookie-file-store": "^2.0.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/express-http-proxy": "^1.6.1",
"@types/jest": "^26.0.14",
"@types/jsdom": "^16.1.0",
"@types/json5": "0.0.30",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^10.17.17",
"@types/nodemailer": "^6.4.0",
"@types/object-assign-deep": "^0.4.0",
"@types/pino": "^5.15.5",
"@types/set-cookie-parser": "0.0.6",
"@types/tough-cookie-file-store": "^2.0.0",
"@types/uuid": "^7.0.0",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"copyfiles": "^2.4.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.2",
"imapflow": "1.0.26",
"jest": "^26.4.2",
"p-wait-for": "^3.1.0",
"prettier": "^1.19.1",
"randexp": "^0.5.3",
"ts-jest": "^26.3.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"yargs": "^16.0.3"
},
"engines": {
"node": "12"
},
"repository": {
"type": "git",
"url": "https://github.com/charlocharlie/epicgames-freegames-node.git"
},
"author": "Charlie Laabs",
"eslintIgnore": [
"**/*.config.js",
"**/node_modules/**",
"dist/**",
"**/*.d.ts",
"src/site/public/*"
],
"license": "MIT"
}