-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.08 KB
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
{
"name": "castle-bank-bot",
"version": "1.0.0",
"description": "Discord bot for Castle's Guild Bank (an EverQuest guild).",
"main": "src/index.ts",
"repository": "git@github.com:sgoodrow/castle.git",
"author": "Scott Goodrow <sgoodrow@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "docker-compose down && rimraf postgres-db",
"start": "tsc && nodemon",
"format": "prettier-eslint --write \"src/**/*.ts\"",
"build": "tsc --skipLibCheck",
"predev": "docker-compose up -d --wait",
"dev": "nodemon",
"test": "jest --watch",
"test:ci": "jest"
},
"engines": {
"node": ">=22.22.0"
},
"dependencies": {
"@discordjs/voice": "^0.19.2",
"@google-cloud/local-auth": "^2.1.0",
"@prisma/client": "^5.1.0",
"@types/moment-timezone": "^0.5.30",
"@types/pg": "^8.6.5",
"async-mutex": "^0.4.0",
"axios": "^1.3.4",
"axios-retry": "^3.4.0",
"chrono-node": "^2.9.1",
"discord.js": "^14.25.1",
"ffmpeg-static": "^5.3.0",
"google-spreadsheet": "^3.3.0",
"googleapis": "^105.0.0",
"libsodium-wrappers": "^0.7.15",
"lodash": "^4.17.21",
"lru-cache": "^7.17.0",
"mediaplex": "^1.0.0",
"moment": "^2.29.2",
"moment-timezone": "^0.5.34",
"pg": "^8.7.3",
"prisma": "^5.2.0",
"redis": "^5.11.0",
"reflect-metadata": "^0.2.2",
"rimraf": "^3.0.2",
"tsyringe": "^4.8.0",
"typeorm": "^0.3.6",
"xlsx": "^0.18.5",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@types/google-spreadsheet": "^3.3.1",
"@types/jest": "29",
"@types/lodash": "^4.17.24",
"@types/node": "^22",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jest": "29",
"ts-node": "^10.7.0",
"typescript": "5.7"
}
}