-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "cosmos-verify-bot",
"version": "1.0.0",
"description": "Discord bot to verify a user's NFT ownership and assign them a role based on it",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn ./src/index.ts",
"deploy-commands": "ts-node ./src/discord/deploy-commands.ts",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rebuschain/cosmos.verify.bot.git"
},
"keywords": [
"cosmos",
"rebus",
"verify"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/rebuschain/cosmos.verify.bot/issues"
},
"homepage": "https://github.com/rebuschain/cosmos.verify.bot#readme",
"dependencies": {
"@discordjs/rest": "^1.1.0",
"@hanchon/ethermint-address-converter": "^1.1.0",
"@keplr-wallet/cosmos": "^0.10.18",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"discord.js": "^14.8.0",
"dotenv": "^16.0.1",
"ethers": "^5.7.0",
"express": "^4.18.1",
"express-winston": "^4.2.0",
"knex": "^2.2.0",
"pg": "^8.7.3",
"safe-eval": "^0.4.1",
"web3": "^1.7.5",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/express": "4",
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.21.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}