This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "poap-bot-v2",
"version": "1.0.0",
"description": "Poap Discord Bot",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/src/index.js",
"build": "npm run clean && tsc",
"debug": "set DEBUG=* && npm start",
"watch": "tsc -p tsconfig.json -w",
"clean": "rm -rf dist/",
"test": "tsc && mocha -r ts-node/register \"dist/tests/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/agustinignaciovazquez/poap-bot-v2.git"
},
"keywords": [
"poap",
"discord",
"bot"
],
"author": "Agustin Vazquez",
"license": "ISC",
"bugs": {
"url": "https://github.com/agustinignaciovazquez/poap-bot-v2/issues"
},
"homepage": "https://github.com/agustinignaciovazquez/poap-bot-v2#readme",
"dependencies": {
"@fast-csv/parse": "^4.3.6",
"@types/node": "^14.17.0",
"axios": "^0.21.1",
"bullmq": "^1.26.4",
"discord.js": "^12.5.3",
"dotenv": "^8.6.0",
"fast-csv": "^4.3.6",
"inversify": "^5.1.1",
"inversify-inject-decorators": "^3.1.0",
"ioredis": "^4.27.2",
"moment": "^2.29.1",
"pg-promise": "^10.10.2",
"pino": "^6.11.3",
"pino-pretty": "^4.8.0",
"reflect-metadata": "^0.1.13",
"typescript": "^4.2.4",
"web3": "^1.3.6"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/ioredis": "^4.26.4",
"@types/mocha": "^8.2.2",
"@types/moment": "^2.13.0",
"@types/pg-promise": "^5.4.3",
"@types/pino": "^6.3.8",
"@types/web3": "^1.2.2",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"ts-mockito": "^2.6.1",
"ts-node": "^9.1.1"
}
}