-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"name": "simbi-telegram-bot",
"version": "1.0.0",
"description": "SIMBI Web3 Telegram Bot - A decentralized AI study companion with blockchain rewards",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "hardhat compile",
"start": "node --experimental-json-modules index.js",
"dev": "node --watch --experimental-json-modules index.js",
"migrate:db": "node migrate.js",
"migrate:encrypt": "node scripts/migrateToEncryption.js"
},
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"ethers": "^6.13.7",
"express": "^5.1.0",
"fs": "^0.0.1-security",
"groq-sdk": "^0.3.3",
"node-schedule": "^2.1.1",
"node-telegram-bot-api": "^0.66.0",
"pg": "^8.16.0",
"qrcode": "^1.5.4",
"sequelize": "^6.37.7",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/contracts": "^5.0.1",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.5"
},
"repository": {
"type": "git",
"url": "https://github.com/kingsleycj/simbi-bot"
},
"keywords": [
"telegram",
"bot",
"blockchain",
"web3",
"study",
"education",
"ai",
"ethereum",
"base",
"nft"
],
"author": "Kingsley Nweke",
"license": "MIT"
}