-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.84 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
{
"name": "my-bot",
"version": "1.0.0",
"author": "Kevin Novak",
"description": "A discord.js bot template written with TypeScript",
"license": "MIT",
"private": true,
"engines": {
"node": ">=16.9.0"
},
"type": "module",
"exports": [
"./dist/start-bot.js",
"./dist/start-manager.js"
],
"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 .",
"clean": "git clean -xdf --exclude=\"/config/**/*\"",
"clean:dry": "git clean -xdf --exclude=\"/config/**/*\" --dry-run",
"build": "tsc --project tsconfig.json",
"commands:view": "npm run build && node --enable-source-maps dist/start-bot.js commands view",
"commands:register": "npm run build && node --enable-source-maps dist/start-bot.js commands register",
"commands:rename": "npm run build && node --enable-source-maps dist/start-bot.js commands rename",
"commands:delete": "npm run build && node --enable-source-maps dist/start-bot.js commands delete",
"commands:clear": "npm run build && node --enable-source-maps dist/start-bot.js commands clear",
"start": "npm run start:bot",
"start:update": "npm run commands:clear && npm run commands:register && npm run start:bot",
"start:bot": "npm run build && node --enable-source-maps dist/start-bot.js",
"update:faucet": "npm run build && node --enable-source-maps dist/utils/update-faucet.js && npm run commands:register"
},
"dependencies": {
"@discordjs/rest": "1.3.0",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"discord.js": "14.6.0",
"discord.js-rate-limiter": "1.3.2",
"erc-20-abi": "^1.0.0",
"ethers": "^5.7.2",
"express": "4.18.2",
"express-promise-router": "4.1.1",
"filesize": "9.0.11",
"linguini": "1.3.1",
"luxon": "3.0.4",
"node-fetch": "3.2.10",
"node-schedule": "2.1.0",
"pg": "^8.8.0",
"pino": "8.6.1",
"pino-pretty": "9.1.1",
"pm2": "^5.2.0",
"prom-client": "^14.1.1",
"reflect-metadata": "^0.1.13",
"remove-markdown": "0.5.0",
"typeorm": "^0.3.10"
},
"devDependencies": {
"@types/express": "4.17.14",
"@types/luxon": "3.0.1",
"@types/node": "^18.8.3",
"@types/node-schedule": "2.1.0",
"@types/remove-markdown": "0.3.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^44.0.2",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
}
}