-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.27 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
74
75
{
"name": "oceanic-bot",
"version": "1.0.0",
"description": "A bot made with Oceanic.",
"packageManager": "bun@1.3.10",
"main": "src/index.ts",
"scripts": {
"start": "bun src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --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": "bun run down && bun run up:dev",
"dev:build": "bun run down && bun run up",
"update": "git pull && git submodule update --init --recursive --remote && docker compose pull && bun run down && bun run up:d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OceanicJS/Bot.git"
},
"keywords": [
"oceanic",
"oceanic.js",
"discord",
"bot",
"discord-bot"
],
"author": "Donovan Daniels <hewwo@yiff.rocks>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OceanicJS/Bot/issues"
},
"homepage": "https://github.com/OceanicJS/Bot#readme",
"dependencies": {
"@oceanicjs/builders": "^1.1.9",
"@octokit/rest": "^20.0.2",
"@octokit/webhooks": "^12.0.11",
"@uwu-codes/logger": "^2.0.7",
"@uwu-codes/status-server": "^1.0.1",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"fuzzy-search": "^3.2.1",
"jsonc-parser": "^3.2.1",
"morgan": "^1.10.0",
"oceanic.js": "1.15.0",
"proper-lockfile": "^4.1.2",
"semver": "^7.5.4",
"typedoc": "^0.25.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "^1.3.1",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/fuzzy-search": "^2.1.5",
"@types/morgan": "^1.9.9",
"@types/proper-lockfile": "^4.1.4",
"@types/semver": "^7.5.6",
"@uwu-codes/eslint-config": "^2.0.8",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^59.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.57.1"
},
"type": "module",
"private": true
}