-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.41 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
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
{
"name": "chainpaye-whatsapp",
"version": "1.0.0",
"description": "WhatsApp bot for seamless cross-border payments using Toronet blockchain",
"scripts": {
"dev": "tsx --watch index.ts",
"build": "tsc",
"start": "tsx index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts",
"lint:fix": "eslint --ext .ts --fix",
"validate-referral": "tsx scripts/validate-referral-earnings.ts",
"validate-referral:live": "tsx scripts/validate-referral-earnings.ts --mode=live",
"validate-referral:compare": "tsx scripts/validate-referral-earnings.ts --mode=compare",
"test:offramp-receipt": "tsx utils/testGenerateSingleReceipt.ts",
"test:crossmint-signing": "tsx scripts/test-crossmint-signing.ts",
"test:offramp-transactions": "tsx scripts/test-offramp-transaction-recording.ts"
},
"keywords": [
"whatsapp",
"bot",
"payment",
"blockchain",
"toronet",
"cross-border"
],
"author": "Knowledge-JO",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.95.4",
"@types/express-rate-limit": "^6.0.2",
"@types/nodemailer": "^8.0.0",
"agenda": "^5.0.0",
"argon2": "^0.44.0",
"axios": "^1.6.2",
"bs58": "^6.0.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"fs-extra": "^11.3.3",
"handlebars": "^4.7.8",
"helmet": "^8.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"nanoid": "^5.1.6",
"node-cron": "^3.0.3",
"nodemailer": "^8.0.4",
"openai": "^6.33.0",
"path-exists": "^5.0.0",
"puppeteer": "^24.34.0",
"redis": "^5.10.0",
"svix": "^1.86.0",
"tsx": "^4.20.6",
"tweetnacl": "^1.0.3",
"typescript": "^5.9.3",
"uuid": "^9.0.1",
"viem": "^2.47.4",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.4",
"@types/puppeteer": "^7.0.4",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"fast-check": "^4.5.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2"
}
}