This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.01 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
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "Vulcan",
"version": "1.0.0",
"description": "Discord bot made for our friend group.",
"main": "./executions/main.js",
"engines": {
"node": ">=12.6.0"
},
"scripts": {
"__EXTRA__": "===================== [ EXTRA ] ============================",
"wintools": "npm install -g windows-build-tools",
"fixhttps": "npm config set registry http://registry.npmjs.org/",
"__MAIN__": "===================== [ MAIN ] =============================",
"required": "./shell/required.sh",
"start": "node index.js",
"dev": "nodemon index.js",
"setup": "npm run exec:components",
"production": "pm2 start index.js --name=vulcan",
"__PRODUCTION__": "===================== [ PRODUCTION ] =======================",
"production:install": "npm install -g pm2",
"production:update": "pm2 update",
"production:list": "pm2 ls",
"production:restart": "pm2 restart vulcan",
"production:stop": "pm2 stop vulcan",
"production:delete": "pm2 delete vulcan",
"production:logs": "pm2 logs vulcan --lines 30",
"production:show": "pm2 show vulcan",
"production:id": "pm2 id vulcan",
"production:exists": "pm2 describe vulcan",
"production:monitor": "pm2 monitor vulcan",
"__EXECUTIONS__": "==================== [ EXECUTIONS ] ============================",
"exec:main": "node index.js ./executions/main.js",
"exec:components": "node index.js ./executions/components.js",
"exec:connection": "node index.js ./executions/connection.js",
"exec:music": "node index.js ./executions/music.js",
"__LINT&FORMAT__": "==================== [ LINT & FORMAT ] ====================",
"format:run": "prettier --write .",
"linter:install": "npm install -g eslint",
"linter:run": "eslint .",
"linter:errors-only": "eslint . --quiet",
"linter:eo": "npm run linter:errors-only",
"linter:setup": "npm install eslint --save-dev",
"linter:init": "eslint --init",
"linter:fix": "eslint . --fix",
"__SECURITY__": "==================== [ SECURITY ] ==========================",
"snyk:install": "npm install -g snyk",
"snyk:protect": "snyk protect",
"snyk:auth": "snyk auth",
"snyk:snapshot": "snyk monitor",
"snyk:wizard": "snyk wizard",
"__DOCS__": "==================== [ DOCS ] =============================",
"docs:display": "./node_modules/.bin/jsdoc -c jsdoc.conf.json",
"__DEBUG__": "==================== [ DEBUG ] =============================",
"debug:install": "npm install -g clinic",
"debug:debugger": "node --nolazy --inspect-brk index.js",
"debug:analyse": "clinic doctor -- node index.js",
"debug:profile": "clinic bubbleprof -- node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GitPaulo/Vulcan.git"
},
"keywords": [
"vulcan",
"discord",
"bot",
"discord-js",
"discord.js",
"discordjs",
"javascript"
],
"author": "Paulo & Carlos",
"license": "MIT",
"bugs": {
"url": "https://github.com/GitPaulo/Vulcan/issues"
},
"homepage": "https://github.com/GitPaulo/Vulcan#readme",
"dependencies": {
"@discordjs/opus": "^0.3.2",
"archiver": "~3.1.1",
"buckets-js": "~1.98.2",
"caller-id": "~0.1.0",
"chalk": "~2.4.2",
"cheerio": "~1.0.0-rc.3",
"discord.js": "^12.3.1",
"express": "^4.17.1",
"ffmpeg-static": "^4.2.7",
"github-api": "~3.3.0",
"got": "~9.6.0",
"js-yaml": "~3.14.0",
"mongoose": "^5.10.10",
"node-fetch": "~2.6.1",
"oauth": "~0.9.15",
"pem": "~1.14.3",
"public-ip": "~4.0.2",
"stream-stream": "~1.2.6",
"ytdl-core-discord": "^1.2.4",
"ytsr": "~0.1.21"
},
"devDependencies": {
"clinic": "^7.0.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsdoc": "^30.7.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"jsdoc": "^3.6.6",
"nodemon": "^1.19.4",
"pm2": "^3.5.2",
"prettier": "^2.1.2",
"snyk": "^1.420.0"
},
"snyk": true
}