This repository was archived by the owner on Jan 31, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.02 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.02 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vizality-bot",
"description": "The server bot for Vizality, containing a bunch of fun and useful commands!",
"version": "3.0.0",
"license": "BSD-2-Clause",
"author": "Dustin Perolio <me@dperolio.com> (https://dperolio.com)",
"contributors": [
{
"name": "Zer0EqualsFalse",
"url": "https://github.com/Zer0EqualsFalse"
}
],
"bugs": "https://github.com/vizality/bot/issues",
"repository": {
"type": "git",
"url": "https://github.com/vizality/bot.git"
},
"main": "dist/index.js",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint . src",
"deploy": "npm run build && npm run start",
"local": "node --no-warnings --es-module-specifier-resolution=node --experimental-json-modules --require dotenv/config .",
"start": "pm2 start pm2.config.cjs --no-daemon --force --env production",
"local:dev": "node --no-warnings --es-module-specifier-resolution=node --experimental-json-modules --require dotenv/config . dotenv_config_path=.env.dev",
"start:dev": "pm2 start pm2.config.cjs --no-daemon --force",
"heroku:start": "heroku ps:scale worker=1 --app vizality-bot",
"heroku:restart": "heroku restart --app vizality-bot",
"heroku:stop": "heroku ps:scale worker=0 --app vizality-bot",
"kill": "pm2 delete all"
},
"imports": {
"#utils": "./dist/utils.js",
"#types": "./dist/types.d.ts",
"#constants": "./dist/constants.js",
"#commands": "./dist/commands/index.js",
"#commands/*": "./dist/commands/*/index.js",
"#menus": "./dist/menus/index.js",
"#menus/*": "./dist/menus/*/index.js",
"#modules": "./dist/modules/index.js",
"#structs": "./dist/structs/index.js"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"@octokit/webhooks": "^9.24.0",
"@vitalets/google-translate-api": "^8.0.0",
"backblaze-b2": "^1.7.0",
"chalk": "^5.0.1",
"color": "^4.2.3",
"detritus-client": "^0.17.0-beta.8",
"detritus-client-rest": "^0.11.0-beta.2",
"detritus-client-socket": "^0.8.3",
"dotenv": "^16.0.0",
"eventsource": "^2.0.1",
"giant-bomb": "^2.0.1",
"imdb-api": "^4.4.1",
"kitsu": "^10.0.0-alpha.23",
"lodash-es": "^4.17.21",
"mime-types": "^2.1.35",
"moment": "^2.29.3",
"mongodb": "^4.5.0",
"node-cron": "^3.0.0",
"node-fetch": "^3.2.4",
"parse-duration": "^1.0.2",
"pet-pet-gif": "^1.0.9",
"pluralize": "^8.0.0",
"pm2": "^5.2.0",
"slug": "^5.3.0",
"typescript": "^4.8.0-dev.20220508"
},
"devDependencies": {
"@octokit/webhooks-types": "^5.6.0",
"@types/backblaze-b2": "^1.5.1",
"@types/lodash-es": "^4.17.6",
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.31",
"@types/node-cron": "^3.0.1",
"@types/parse-duration": "^0.3.0",
"@types/pluralize": "^0.0.29",
"@types/uuid": "^8.3.4",
"@vizality/eslint-config": "*",
"@vizality/tsconfig": "*",
"@vizality/types": "*",
"eslint": "^8.14.0"
}
}