-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
78 lines (78 loc) · 2.35 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
{
"name": "twitch_drops_bot",
"version": "1.3.3",
"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": "^1.3.5",
"cli-progress": "^3.12.0",
"csv-parse": "^5.3.6",
"csv-stringify": "^6.3.0",
"dnscache": "^1.0.2",
"ink": "^3.2.0",
"lodash": "^4.17.21",
"logform": "^2.5.1",
"pidtree": "^0.6.0",
"pidusage": "^3.0.2",
"prompt": "^1.2.2",
"puppeteer": "^19.8.5",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"react": "^17.0.2",
"sorted-array-type": "^1.2.1",
"string-width": "^5.1.2",
"strip-ansi": "^7.0.1",
"uuid": "^9.0.0",
"wait-notify": "^1.0.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/argparse": "^2.0.10",
"@types/cli-progress": "^3.9.2",
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.192",
"@types/object-hash": "^3.0.2",
"@types/pidusage": "^2.0.2",
"@types/prompt": "^1.1.5",
"@types/react": "^17.0.41",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"depcheck": "^1.4.3",
"eslint": "^8.37.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"rimraf": "^4.4.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}