-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 917 Bytes
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
{
"name": "proof-stamp-bot",
"version": "1.1.0",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"start:bg": "node scripts/start-managed.js",
"stop:bg": "node scripts/stop-managed.js",
"status:bg": "node scripts/status-managed.js",
"hooks:install": "powershell -ExecutionPolicy Bypass -File scripts/setup-hooks.ps1",
"secrets:scan": "gitleaks detect --source . --redact -c .gitleaks.toml --verbose"
},
"dependencies": {
"@ton/core": "^0.63.1",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^16.2.2",
"@tonconnect/sdk": "^3.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"grammy": "^1.21.1",
"pdfkit": "^0.13.0",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/pdfkit": "^0.13.1",
"@types/qrcode": "^1.5.5",
"typescript": "^5.3.2"
}
}