This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
82 lines (82 loc) · 2.67 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
79
80
81
82
{
"name": "degen",
"version": "2.8.3",
"description": "Administrative and Utilitarian bot for the Bankless Discord Server.",
"main": "app.js",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"qa": "node -r dotenv/config --trace-warnings dist/app/app.js dotenv_config_path=.env.qa",
"prod": "node -r dotenv/config --trace-warnings dist/app/app.js dotenv_config_path=.env.prod",
"prestart": "yarn install && yarn build && yarn lint",
"pretest": "yarn install && yarn build",
"start": "node --trace-warnings -r dotenv/config dist/app/app.js",
"force-start": "tsc -p tsconfig.json && node -r dotenv/config dist/app/app.js",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"watch": "tsc -p tsconfig.json -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BanklessDAO/discord-bots"
},
"keywords": [
"bankless",
"discord",
"bot",
"crypto"
],
"author": "BANKLESS DAO",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/BanklessDAO/discord-bots/issues"
},
"homepage": "https://github.com/BanklessDAO/discord-bots/blob/main/README.md",
"dependencies": {
"@logdna/logger": "^2.4.1",
"@notionhq/client": "0.2.0",
"@sentry/integrations": "^6.16.1",
"@sentry/node": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"@types/node": "^16.7.1",
"@types/node-cron": "^3.0.1",
"axios": "^0.21.4",
"csv-parse": "^5.0.3",
"csv-stringify": "^6.0.3",
"dayjs": "^1.10.7",
"discord.js": "^13.6.0",
"dotenv": "^10.0.0",
"evm-chains": "^0.2.0",
"form-data": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mongodb": "^3.6.9",
"node-cron": "^3.0.0",
"p-queue": "^6.6.2",
"slash-create": "^5.0.3",
"twitter-api-v2": "^1.6.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.1.0",
"@types/bson": "^4.2.0",
"@types/jest": "^27.0.1",
"@types/mongodb": "^3.6.20",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"builder-pattern": "^1.3.0",
"eslint": "^7.27.0",
"jest": "^27.0.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"typescript": "<4.5.0",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"engines": {
"yarn": "1.x",
"node": "16.x"
},
"engineStrict": true
}