generated from BanklessDAO/degen-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.43 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
{
"name": "first-quest-bot",
"version": "1.0.0",
"description": "First Quest and CAPTCHA verification for Bankless DAO.",
"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",
"pretest": "yarn install && yarn build",
"start": "node --trace-warnings -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/first-quest-bot"
},
"keywords": [
"bankless",
"discord",
"bot",
"crypto"
],
"author": "BANKLESS DAO",
"license": "MIT",
"bugs": {
"url": "https://github.com/BanklessDAO/first-quest-bot/issues"
},
"homepage": "https://github.com/BanklessDAO/first-quest-bot/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",
"axios": "^0.21.4",
"cron": "^1.8.2",
"dayjs": "^1.10.7",
"dd-trace": "^1.5.1",
"discord.js": "^13.1.0",
"discord.js-captcha": "^2.2.2",
"dotenv": "^10.0.0",
"form-data": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"mongodb": "^3.6.9",
"p-queue": "^6.6.2",
"slash-create": "^4.3.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@shelf/jest-mongodb": "^2.1.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.4.3",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"engines": {
"yarn": "1.x",
"node": "16.x"
},
"engineStrict": true
}