-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.84 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
{
"name": "stockshock",
"version": "8.0.0",
"private": true,
"description": "A simple bot for MediaMarkt and Saturn to check if tracked items are available",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start:dev": "ts-node src/index.ts",
"prestart": "npm run build",
"start": "node dist/src/index.js",
"lint": "npm test",
"test": "eslint src/**",
"prepare": "husky"
},
"repository": "timbru31/mms-stockshock",
"author": "Tim Brust <github@timbrust.de>",
"license": " GPL-3.0-or-later",
"bugs": "https://github.com/timbru31/mms-stockshock/issues",
"homepage": "https://github.com/timbru31/mms-stockshock#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.716.0",
"date-fns": "^4.1.0",
"discord.js": "^14.16.3",
"inquirer": "^8.2.6",
"proxy-chain": "^2.5.6",
"puppeteer": "^23.11.1",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"telegraf": "^4.16.3",
"toml": "^3.0.0",
"user-agents": "^1.1.400",
"uuid": "^11.0.3",
"winston": "^3.17.0",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/eslint__js": "^8.42.3",
"@types/inquirer": "^8.2.1",
"@types/user-agents": "^1.0.4",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.2"
},
"funding": "https://github.com/sponsors/timbru31"
}