forked from TychoTheTaco/Twitch-Drops-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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
{
"name": "twitch_drops_bot",
"version": "1.1.0",
"description": "A Node.js bot for automatically collecting Twitch drops.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TychoTheTaco/Twitch-Drops-Bot"
},
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"clean": "rimraf dist",
"compile": "tsc --pretty",
"compile:watch": "tsc --watch",
"build": "npm run clean && npm run compile",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node dist/index.js",
"updateGames": "node dist/update_games.js",
"u": "npm run updateGames",
"docker:run": "npm run docker:run-linux",
"dr": "npm run docker:run",
"docker:run-linux": "docker run --rm -i -t -v ${PWD}:/app/data --sig-proxy=false",
"drl": "npm run docker:run-linux",
"docker:run-windows": "docker run --rm -i -t -v %cd%:/app/data --sig-proxy=false",
"drw": "npm run docker:run-windows"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"argparse": "^2.0.1",
"axios": "^0.26.1",
"https-proxy-agent": "^5.0.1",
"cli-progress": "^3.10.0",
"csv-parse": "^5.0.4",
"csv-stringify": "^6.0.5",
"dnscache": "^1.0.2",
"ink": "^3.2.0",
"lodash": "^4.17.21",
"pidtree": "^0.5.0",
"pidusage": "^3.0.0",
"prompt": "^1.2.2",
"puppeteer": "^13.5.2",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"react": "^17.0.2",
"sorted-array-type": "^1.2.1",
"string-width": "^5.1.2",
"uuid": "^8.3.2",
"wait-notify": "^1.0.3",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/cli-progress": "^3.9.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.181",
"@types/object-hash": "^2.2.1",
"@types/pidusage": "^2.0.2",
"@types/prompt": "^1.1.2",
"@types/react": "^17.0.41",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"depcheck": "^1.4.3",
"eslint": "^8.13.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}