-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.51 KB
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
{
"name": "talli",
"version": "3.5.12",
"description": "Talli - BC Self-Serve Portal Scraper - Automated scraping of notifications, messages, payment info, and service requests",
"main": "src/scraper.js",
"scripts": {
"check": "node src/scraper.js",
"test": "node tools/test-stripe-webhook.js && node tools/test-checkout-ui.js && node tools/test-webmcp.js && node tools/test-cors-utils.js && node tools/test-auth-cookie.js && node tools/test-paid-status.js && node tools/test-read-messages.js && node tools/test-csrf-origin.js && node tools/test-blob-helpers.js && node tools/test-mobile-data.js && node tools/test-pay-dates.js && node tools/test-scrape-lock.js && node tools/test-parse-messages.js && node tools/test-message-pagination.js && node tools/test-dispute-wizard.js && node tools/test-dtc-navigator.js && node tools/test-program-schema.js && node tools/test-http-scraper.js && node tools/test-http-scraper-integration.js && node tools/test-i18n.js && node tools/test-login-loop.js && node tools/test-response-split.js",
"test:http-scraper-integration": "node tools/test-http-scraper-integration.js",
"test:cors": "node tools/test-cors-utils.js",
"test:auth-cookie": "node tools/test-auth-cookie.js",
"test:paid-status": "node tools/test-paid-status.js",
"test:scraper": "node tools/test.js",
"test:monthly-report": "node tools/test-monthly-report.js",
"api": "node src/api.js",
"dev": "nodemon src/api.js",
"watch": "concurrently \"nodemon src/api.js\" \"browser-sync start --proxy localhost:3000 --files 'web/**/*.html' --no-open\"",
"start": "node src/api.js",
"upload-blob": "node scripts/upload-to-blob.js",
"info": "bash scripts/talli-info.sh",
"monthly-report": "python3 tools/monthly_report.py",
"screenshot:preview": "node scripts/preview-screenshot.js",
"test:i18n": "node tools/test-i18n.js",
"deploy": "wrangler deploy",
"dev:worker": "wrangler dev"
},
"keywords": [
"web-scraping",
"automation",
"bc-government",
"portal"
],
"author": "",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"cheerio": "^1.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.2",
"stripe": "^22.4.0"
},
"devDependencies": {
"@sparticuz/chromium": "^143.0.4",
"browser-sync": "^3.0.4",
"concurrently": "^9.2.1",
"live-server": "^1.2.2",
"nodemon": "^3.1.11",
"puppeteer-core": "^24.40.0",
"wrangler": "^4.127.1"
}
}