-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "faucet-telegram-bot",
"version": "0.0.1",
"description": "This telegram UI for Subsocial faucet bot",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/olehmell/faucet-telegram-bot.git"
},
"keywords": [
"subsocial",
"faucet",
"substrate",
"polkadot",
"tokens",
"smn"
],
"bugs": {
"url": "https://github.com/olehmell/faucet-telegram-bot/issues"
},
"homepage": "https://github.com/olehmell/faucet-telegram-bot#readme",
"resolutions": {
"@polkadot/types": "1.28.1",
"@polkadot/api": "1.28.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bn.js": "^4.11.5",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.3",
"@types/jest": "^24.0.15",
"@types/multer": "^1.4.4",
"@types/node": "^10.14.10",
"@types/pg": "^7.14.3",
"@types/ws": "^7.2.3",
"jest": "~24.8.0",
"moment-timezone": "^0.5.26",
"nodemon": "^1.18.9",
"typescript": "^3.8.3"
},
"scripts": {
"start": "node build/src/index.js",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "DappForce contributors",
"license": "GPL-3.0-only",
"dependencies": {
"@polkadot/api": "1.28.1",
"@polkadot/types": "1.28.1",
"@subsocial/api": "^0.4.8",
"bn.js": "^4.11.8",
"concurrently": "^4.1.2",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"telegraf": "^3.38.0"
}
}