-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.32 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
{
"name": "castle-mania",
"version": "1.1.0",
"description": "A mini-game bot for @discord",
"type": "module",
"main": "index.js",
"scripts": {
"start": "rm -rf ./dist && tsc && node ./dist/index.js",
"bot": "tsc-watch --onSuccess 'node ./dist/lib/app.js'",
"api": "tsc-watch --onSuccess 'node ./dist/lib/server.js'",
"dev": "tsc-watch --onSuccess 'node ./dist/index.js'",
"reload-commands": "rm -rf ./dist && tsc && node ./dist/lib/reload-commands.js",
"lint": "prettier --check './src/**/*.ts' && eslint './src/**/*.ts'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^18.8.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0"
},
"dependencies": {
"@discordjs/rest": "^1.3.0",
"@fastify/cors": "^10.0.1",
"@meanie/mongoose-upsert-many": "^2.2.0",
"@sentry/integrations": "^7.43.0",
"@sentry/node": "^8.38.0",
"@sentry/tracing": "^7.65.0",
"@sentry/types": "^7.11.1",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"discord-api-types": "^0.37.18",
"discord.js": "^13.1.0",
"dotenv": "^16.0.3",
"engine-blackjack": "^0.9.2",
"fastify": "^4.10.2",
"fastify-jwt": "^4.1.3",
"fastify-oauth2": "^4.6.0",
"fastify-rate-limit": "^5.9.0",
"fastify-sentry": "^1.4.0",
"fuse.js": "^6.6.2",
"glob": "^8.0.3",
"humanize-duration": "^3.28.0",
"ioredis": "^4.28.2",
"lodash": "^4.17.21",
"lodash.chunk": "^4.2.0",
"lodash.concat": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.uniqby": "^4.7.0",
"long": "^5.2.1",
"moment": "^2.29.4",
"mongoose": "^6.12.0",
"mongoose-lean-methods": "^0.1.1",
"mongoose-long": "^0.6.0",
"node-cron": "^3.0.2",
"prettier": "^2.7.1",
"redis": "^4.5.1",
"redis-server": "^1.2.2",
"redis-sessions": "^3.0.0",
"redlock": "^5.0.0-beta.1",
"stripe": "^8.195.0",
"text-table": "^0.2.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
}
}