-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
64 lines (63 loc) · 1.74 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
{
"name": "discord-faucet-bot",
"version": "2.0.0",
"description": "Discord Faucet Bot to let people request for Testnet tokens",
"main": "index.js",
"author": "Yanuka Deneth",
"engines": {
"node": ">=16.9.0"
},
"scripts": {
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"start": "ts-node src/index.ts",
"start:dev": "ts-node-dev src/index.ts",
"start:prod": "tsc && node dist/deploy-commands.js && node dist/index.js",
"build": "tsc",
"bot:addcommands": "ts-node src/deploy-commands.ts",
"bot:deletecommands": "ts-node src/delete-commands.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yanukadeneth99/Discord-Faucet-Bot.git"
},
"bugs": {
"url": "https://github.com/yanukadeneth99/Discord-Faucet-Bot/issues"
},
"homepage": "https://github.com/yanukadeneth99/Discord-Faucet-Bot#readme",
"license": "MIT",
"keywords": [
"faucet",
"bot",
"learnweb3dao",
"learnweb3"
],
"dependencies": {
"@celo-tools/celo-ethers-wrapper": "^0.3.0",
"@discordjs/rest": "^1.3.0",
"discord-api-types": "^0.37.17",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"keyv": "^4.5.2",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.10"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^44.0.2",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
}
}