generated from hoonsubin/discord-bot-starter
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.45 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
{
"name": "astar-faucet-bot",
"version": "1.0.0",
"description": "Astar Network testnet faucet bot",
"private": true,
"keywords": [
"astar-network",
"typescript",
"discord",
"bot"
],
"homepage": "https://github.com/AstarNetwork/astar-faucet-bot",
"bugs": {
"url": "https://github.com/AstarNetwork/astar-faucet-bot/issues"
},
"author": {
"name": "Hoon Kim",
"url": "https://github.com/hoonsubin"
},
"repository": {
"type": "git",
"url": "https://github.com/AstarNetwork/astar-faucet-bot.git"
},
"main": "build/index.js",
"scripts": {
"serve:firebase": "npm run build && firebase emulators:start --only functions",
"shell:firebase": "npm run build && firebase functions:shell",
"start": "yarn run serve",
"serve": "node build/index.js",
"dev": "ts-node-dev -r dotenv/config src/index.ts",
"build": "tsc --project tsconfig.json",
"lint": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint:check": "eslint '*/**/*.{js,ts}'",
"test": "NODE_ENV=test echo \"Test not implemented\"!"
},
"engines": {
"node": "18"
},
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jest-config": "^27.5.1",
"nock": "^13.2.4",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"@discordjs/rest": "^0.3.0",
"@polkadot/api": "^12.2.1",
"@polkadot/keyring": "^13.0.2",
"@polkadot/util": "^13.0.2",
"@polkadot/util-crypto": "^13.0.2",
"axios": "^0.28.0",
"bignumber.js": "^9.0.2",
"cors": "^2.8.5",
"dedent": "^0.7.0",
"discord-api-types": "^0.30.0",
"discord.js": "^13.6.0",
"express": "^4.19.2",
"firebase-admin": "^11.9.0",
"firebase-functions": "^5.0.1",
"google-recaptcha": "^1.1.0"
}
}