forked from Sjenica1/discord-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "discord-runner",
"version": "0.0.1",
"description": "A Discord bot for the Agora Space platform",
"author": "ZGEN",
"license": "MIT",
"homepage": "https://github.com/AgoraSpaceDAO/discord-runner#readme",
"bugs": {
"url": "https://github.com/AgoraSpaceDAO/discord-runner/issues"
},
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/Main.ts",
"build": "tsc",
"prod": "node build/Main.js",
"prepare": "husky install",
"format": "prettier --write .",
"lint-fix": "eslint --fix . --ext .ts,.tsx,.js,.jsx"
},
"dependencies": {
"@discordx/importer": "^1.1.2",
"@discordx/utilities": "^4.2.4",
"@guildxyz/sdk": "github:agoraxyz/guild-sdk#next",
"axios": "^0.26.1",
"dayjs": "^1.11.1",
"discord.js": "^13.6.0",
"discordx": "^9.5.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"winston": "^3.7.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"lint-staged": {
"*.@(js|jsx|ts|tsx)": "npm run lint-fix",
"*.@(js|jsx|ts|tsx|css|md)": "npm run format"
}
}