forked from jef/streetmerchant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.87 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
{
"name": "streetmerchant",
"version": "3.11.0",
"description": "The world's easiest, most powerful stock checker",
"main": "src/index.ts",
"scripts": {
"fix": "gts fix",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"compile:production": "tsc -p tsconfig.prod.json",
"pretest": "pnpm run compile",
"posttest": "pnpm run lint",
"prestart": "pnpm run compile",
"start": "node build/src/index.js",
"start:dev": "ts-node-dev --respawn --transpile-only --watch ./dotenv ./src/index.ts",
"start:production": "node build/src/index.js",
"test": "c8 mocha 'build/test/**/test-*.js' --exclude 'build/test/functional/**/test-*.js'",
"test:notification": "pnpm run compile && node build/test/functional/test-notification.js",
"test:notification:production": "node build/test/functional/test-notification.js",
"test:captcha": "pnpm run compile && node build/test/functional/test-captcha.js",
"test:captcha:production": "node build/test/functional/test-captcha.js"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jef/streetmerchant.git"
},
"keywords": [],
"author": "jef",
"license": "MIT",
"bugs": {
"url": "https://github.com/jef/streetmerchant/issues"
},
"homepage": "https://github.com/jef/streetmerchant#readme",
"dependencies": {
"@ghostery/adblocker-puppeteer": "^2.5.0",
"@jef/pushbullet": "^2.4.3",
"@parse/node-apn": "^5.0.0",
"@slack/web-api": "^6.3.0",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"del": "^6.1.1",
"discord.js": "^13.0.1",
"domhandler": "^5.0.3",
"dotenv": "^10.0.0",
"messaging-api-telegram": "^1.0.4",
"mqtt": "^4.2.8",
"node-hue-api": "^4.0.10",
"node-notifier": "^10.0.0",
"node-pagerduty": "^1.3.6",
"nodemailer": "^6.6.3",
"open": "8.2.1",
"play-sound": "^1.1.3",
"puppeteer": "npm:rebrowser-puppeteer@^23.10.3",
"pushover-notifications": "^1.2.2",
"redis": "^3.1.2",
"tempy": "^1.0.1",
"top-user-agents": "^2.1.33",
"twilio": "^3.71.1",
"twitter": "^1.7.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@swc/core": "^1.10.12",
"@swc/helpers": "^0.5.15",
"@types/async": "^3.2.7",
"@types/mocha": "^9.0.0",
"@types/node": "^20.17.16",
"@types/node-notifier": "^8.0.1",
"@types/nodemailer": "^6.4.4",
"@types/redis": "^2.8.31",
"@types/sinon": "^10.0.2",
"@types/twitter": "^1.7.1",
"c8": "^7.8.0",
"gts": "^3.1.0",
"mocha": "^9.0.3",
"sinon": "^11.1.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3",
"webpack": "^5.50.0"
},
"volta": {
"node": "20.18.2"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}