-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "paladinquestbot",
"version": "1.0.0",
"description": "A discord bot that can send a message whenever there is a new quest created.",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "eslint --ext .ts,.js src",
"lint:fix": "eslint --ext .ts,.js src --fix",
"start": "node dist/"
},
"keywords": [],
"author": "lolboysg",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"discord.js": "^14.1.2",
"dotenv": "^16.0.1",
"ethers": "^6.6.2",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"twitter-api-v2": "^1.14.2"
},
"devDependencies": {
"@types/node": "^18.7.17",
"@types/node-cron": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}