forked from smartprince2/VitaBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.21 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vitabot",
"version": "1.0.0",
"description": "Tipbots for Vitamin Coin on the vite blockchain!",
"main": "node dist/wallet",
"scripts": {
"test": "npm run build && npm start",
"build": "tsc",
"start": "node .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeanOUINA/VitaBot.git"
},
"keywords": [
"vitc",
"vite",
"crypto",
"currencies",
"vitamin"
],
"author": "JeanOUINA",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/JeanOUINA/VitaBot/issues"
},
"homepage": "https://github.com/JeanOUINA/VitaBot#readme",
"private": true,
"devDependencies": {
"@types/blake2": "^4.0.1",
"@types/express": "^4.17.13",
"@types/inquirer": "^8.1.1",
"@types/long-timeout": "^0.1.0",
"@types/node": "^16.4.12",
"@types/node-fetch": "^2.5.12",
"@types/node-telegram-bot-api": "^0.53.3",
"@types/qrcode": "^1.4.1",
"@types/tmi.js": "^1.8.0",
"@types/twitter": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@vite/vitejs": "^2.3.16",
"@vite/vitejs-http": "^2.3.18",
"@vite/vitejs-ws": "^2.3.16",
"bignumber.js": "^9.0.1",
"blake2": "^4.0.2",
"blakejs": "^1.1.1",
"discord.js": "^13.9.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"inquirer": "^8.1.2",
"joi": "^17.4.2",
"long-timeout": "^0.1.1",
"modernlog": "^1.0.1",
"mongoose": "^5.13.5",
"node-fetch": "^2.6.1",
"node-lmdb": "^0.9.7",
"node-telegram-bot-api": "^0.56.0",
"pm2": "^5.1.2",
"qrcode": "^1.4.4",
"snoostorm": "^1.5.2",
"snoowrap": "^1.23.0",
"tiny-async-pool": "^1.2.0",
"tmi.js": "^1.8.5",
"tweetnacl": "^1.0.3",
"twitter-api-v2": "^1.5.1",
"twitter-autohook": "^1.7.2",
"twitter-text": "^3.1.0",
"ws": "^8.2.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
}
}