-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.27 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
{
"name": "maidboye",
"version": "2.0.0",
"description": "A cute little maid bot for keeping your server nice and tidy.",
"buildDate": 1689609755398,
"main": "dist/src/index.js",
"scripts": {
"start": "node --no-warnings --no-deprecation --experimental-specifier-resolution=node dist/src/index.js",
"build": "rm -rf dist && tsc && npx build-date $(pwd)",
"create-migration": "node -e \"require('fs').writeFileSync('./src/db/migrations/' + Date.now() + '_' + (process.argv[1] || 'name') + '.sql', '')\"",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"up:d": "sudo docker compose pull && sudo docker compose up -d",
"up": "sudo docker compose pull && sudo docker compose up",
"up:db": "sudo docker compose pull && sudo docker compose up -d postgres redis",
"down": "sudo docker compose down",
"up:dev": "sudo docker compose up",
"dev": "pnpm run down && pnpm run up:dev",
"dev:build": "pnpm run down && pnpm run up",
"update": "git pull && git submodule update --init --recursive && docker compose pull && pnpm run down && pnpm run up:d",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonovanDMC/MaidBoye.git"
},
"keywords": [
"maid",
"bot",
"maid-boye",
"discord-bot",
"eris"
],
"author": "Donovan Daniels <hewwo@yiff.rocks> (https://furry.cool)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DonovanDMC/MaidBoye/issues"
},
"homepage": "https://github.com/DonovanDMC/MaidBoye#readme",
"devDependencies": {
"@swc/core": "^1.5.24",
"@swc/helpers": "^0.5.11",
"@types/chunk": "^0.0.2",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.6",
"@types/express-session": "^1.18.0",
"@types/fuzzy-search": "^2.1.5",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.1",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.0",
"@types/pg": "^8.11.6",
"@uwu-codes/eslint-config": "^1.1.28",
"@uwu-codes/tsconfig": "1.0.7",
"@uwu-codes/types": "^1.0.12",
"eslint-plugin-import": "^2.29.1",
"sagiri": "^3.6.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@oceanicjs/builders": "^1.1.11",
"@uwu-codes/logger": "^2.0.7",
"@uwu-codes/status-server": "^1.0.1",
"@uwu-codes/utils": "^1.3.4",
"blapi": "^3.1.2",
"cheweyapi": "^2.0.4",
"chunk": "^0.0.3",
"debug": "^4.3.5",
"discord-arts": "^0.6.1",
"discord-command-parser": "^1.5.3",
"e621": "^2.2.6",
"eslint-plugin-unicorn": "^53.0.0",
"express": "^4.19.2",
"express-handlebars": "^7.1.2",
"express-http-proxy": "^2.0.0",
"express-session": "^1.18.0",
"file-type": "^19.0.0",
"fuzzy-search": "^3.2.1",
"imgen": "^1.0.1",
"ioredis": "^5.4.1",
"jsdom": "^24.1.0",
"markdown-it": "^14.1.0",
"morgan": "^1.10.0",
"oceanic.js": "^1.10.4",
"patch-package": "^8.0.0",
"pg": "^8.11.5",
"short-uuid": "^5.2.0",
"tsafe": "^1.6.6",
"tsconfig-paths": "^4.2.0",
"undici": "^6.18.2",
"winston": "^3.13.0",
"yaml": "^2.4.3",
"yiffy": "^2.3.2"
},
"type": "module",
"engines": {
"node": ">=19.x"
},
"engineStrict": true
}