-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "nft-validation-tg-bot",
"version": "1.1.0",
"description": "Telegram Bot Validation NFT",
"main": "src/index.ts",
"author": "Jill Chang",
"homepage": "https://github.com/jill6666/nft-validation-tg-bot/",
"dependencies": {
"@tonconnect/sdk": "^3.0.0",
"@vercel/kv": "^1.0.1",
"@vercel/node": "^3.0.22",
"axios": "^1.6.8",
"dotenv-cli": "^7.4.1",
"express": "^4.19.2",
"node-telegram-bot-api": "^0.65.1",
"qrcode": "^1.5.3",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.11.26",
"@types/node-telegram-bot-api": "^0.64.6",
"@types/qrcode": "^1.5.5",
"@vercel/ncc": "^0.38.1",
"debug": "^4.3.4",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"scripts": {
"dev": "DEBUG=bot* dotenv -- nodemon -e ts -x ts-node src/index.ts",
"devWindows": "@powershell -Command $env:DEBUG='bot*';dotenv -- -- nodemon -e ts -x ts-node src/index.ts",
"build": "ncc build src/index.ts -o public -m",
"prettier": "prettier --write 'src/**/*.ts'",
"lint": "tsc --noemit"
}
}