-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.86 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
116
117
118
119
{
"name": "goat-bot-v2",
"version": "1.5.20",
"description": "A simple Bot chat messenger using personal account. Made by NTKhang.",
"main": "index.js",
"engines": {
"node": "16.x",
"npm": ">=7.0.0"
},
"dependencies": {
"@distube/ytdl-core": "^4.13.2",
"axios": "^1.4.0",
"bcrypt": "^5.0.1",
"canvas": "^2.9.1",
"cheerio": "^1.0.0-rc.12",
"child_process": "^1.0.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"discord-image-generation": "^1.4.13",
"eta": "^1.12.3",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^6.5.2",
"express-session": "^1.17.3",
"form-data": "^4.0.0",
"fs-extra": "^11.1.0",
"googleapis": "^100.0.0",
"gradient-string": "^2.0.2",
"graphql-query-to-json": "^2.0.1",
"https": "^1.0.0",
"jsonlint-mod": "^1.7.6",
"moment-timezone": "^0.5.34",
"mongoose": "^6.3.1",
"mqtt": "^4.3.7",
"node-cron": "^3.0.2",
"nodemailer": "^6.7.5",
"npmlog": "^7.0.1",
"ora": "^5.4.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"qrcode-reader": "^1.0.4",
"qs": "^6.11.0",
"request": "^2.88.2",
"searchitunes": "^2.5.4",
"sequelize": "^6.19.0",
"socket.io": "^4.5.1",
"sqlite3": "^5.0.5",
"tinyurl": "^1.1.7",
"totp-generator": "^0.0.13",
"websocket-stream": "^5.5.2"
},
"scripts": {
"start": "node index.js",
"dev": "set NODE_ENV=development&& node index.js",
"prod": "set NODE_ENV=production&& node index.js"
},
"author": "NTKhang",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ntkhang03/Goat-Bot-V2.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/ntkhang03/Goat-Bot-V2/issues"
},
"homepage": "https://github.com/ntkhang03/Goat-Bot-V2#readme",
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"javascript-obfuscator": "^4.0.1",
"npm-size": "^1.3.0",
"os": "^0.1.2",
"prettier": "^2.7.1",
"prompt-checkbox": "^2.2.0",
"terser": "^5.15.0"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13
},
"rules": {
"no-prototype-builtins": 0,
"no-unused-vars": 1,
"comma-dangle": 1,
"no-redeclare": 0,
"prefer-const": 1,
"no-useless-escape": 0,
"no-mixed-spaces-and-tabs": 0,
"semi": 1,
"no-useless-catch": 0,
"no-empty": 0,
"use-isnan": 0,
"no-extra-semi": 1,
"no-async-promise-executor": 0,
"no-unreachable": 1,
"no-var": 1,
"no-fallthrough": 1
},
"ignorePatterns": [
"*.eta"
]
}
}