-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
125 lines (125 loc) · 3.73 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"scripts": {
"start": "NODE_OPTIONS=--max-old-space-size=4096 vite-node src/index.ts",
"dev": "vite-node --watch src/index.ts",
"test": "NODE_OPTIONS=--max-old-space-size=8192 jest --detectOpenHandles",
"test:ci": "NODE_OPTIONS=--max-old-space-size=8192 jest --silent --detectOpenHandles",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts .",
"generate:types": "node ./scripts/generate-types.js",
"guilds:prune": "node ./scripts/leave-server.js",
"format": "npx prettier src/** --write",
"cmd:sync": "vite-node ./scripts/sync-commands.js",
"cmd:global:destroy": "vite-node ./scripts/destroy-global-commands.js"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@faker-js/faker": "^8.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.5",
"@types/chroma-js": "^2.4.0",
"@types/cron": "^2.0.0",
"@types/fuzzyset": "^1.0.4",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.188",
"@types/node-fetch": "2.5.12",
"@types/pg": "^8.6.1",
"@types/pino": "^6.3.6",
"@types/retry": "^0.12.2",
"@types/sharp": "^0.30.4",
"@types/stack-utils": "^2.0.1",
"@types/twit": "^2.2.30",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"lefthook": "^1.4.5",
"lint-staged": ">=10",
"prettier": "3.0.0",
"semantic-release": "^21.0.7",
"ts-jest": "^27.0.7",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@bonfida/spl-name-service": "^1.0.11",
"@consolelabs/mochi-formatter": "^20.0.10",
"@consolelabs/mochi-rest": "^5.3.5",
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.5.0",
"@haileybot/captcha-generator": "^1.7.0",
"@noble/ed25519": "^2.0.0",
"@noble/hashes": "^1.3.2",
"@sentry/node": "^7.58.1",
"@solana/spl-token": "0.3.7",
"@solana/web3.js": "1.73.2",
"@ton/core": "^0.53.0",
"@types/qrcode": "^1.5.0",
"@types/turndown": "^5.0.1",
"canvas": "^2.9.0",
"change-case": "^4.1.2",
"chart.js": "^3.7.1",
"chartjs-node-canvas": "^4.1.6",
"chroma-js": "^2.4.2",
"dayjs": "^1.10.7",
"deepmerge": "^4.2.2",
"discord-api-types": "^0.36.0",
"discord.js": "^13.14.0",
"dotenv": "^10.0.0",
"emoji-regex": "^10.2.1",
"ethers": "^5.4.7",
"fetch-to-curl": "^0.5.2",
"fuzzyset": "^1.0.7",
"ioredis": "^5.3.2",
"kafkajs": "^2.2.3",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.43",
"nanoid": "3",
"node-cache": "^5.1.2",
"node-fetch": "2.6.2",
"parse-duration": "^1.0.2",
"pino": "^8.14.1",
"pino-pretty": "^10.0.1",
"qrcode": "^1.5.1",
"query-string": "^7.1.1",
"retry": "^0.13.1",
"sharp": "^0.30.7",
"squarify": "^1.1.0",
"stack-utils": "^2.0.6",
"stale-while-revalidate-cache": "^3.1.3",
"swagger-typescript-api": "^10.0.1",
"turndown": "^7.1.1",
"tweetnacl": "^1.0.3",
"type-fest": "^3.12.0",
"unleash-client": "^5.0.0",
"vite": "^4.3.9",
"vite-node": "^0.33.0",
"vite-plugin-checker": "^0.6.1",
"vite-tsconfig-paths": "^4.2.0",
"ws": "^8.12.0",
"xstate": "^4.37.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,md}": "prettier --write"
},
"resolutions": {
"typescript": "4.7.4"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
},
"engines": {
"node": "18.x"
},
"name": "mochi-discord",
"version": "6.28.1"
}