forked from LeventHAN/SquadStatsJSPRO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.43 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
120
121
{
"name": "squadstatsjs-pro",
"version": "2.1.3",
"description": "An advanced version of SquadStatsJS (tracking your squad stats) with advanced discord commands to manage your discord server.",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js --fix",
"prettier": "prettier --use-tabs --write .",
"ready": "yarn run genApiDoc && yarn run prettier && yarn run lint",
"genApiDoc": "apidoc -f \"./dashboard/routes/\" -i ./ -o \"dashboard/public/apidoc/\""
},
"engines": {
"node": ">=16.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/11TStudio/SquadStatsJS-PRO.git"
},
"keywords": [
"SquadStatsJS",
"squad",
"stats track",
"squadjs",
"discord",
"moderation"
],
"author": "LeventHAN",
"license": "MIT",
"bugs": {
"url": "https://github.com/11TStudio/SquadStatsJS-PRO/issues"
},
"homepage": "https://github.com/11TStudio/SquadStatsJS-PRO#readme",
"dependencies": {
"@leventhan/battlemetrics": "^1.5.6",
"axios": "^0.21.1",
"btoa": "^1.2.1",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"cron": "^1.7.2",
"discord.js": "^13.0.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.1",
"figlet": "^1.5.0",
"i18next": "^20.2.2",
"i18next-fs-backend": "^1.1.1",
"md5": "^2.2.1",
"moment": "^2.26.0",
"mongoose": "^5.9.25",
"ms": "^2.1.3",
"multiparty": "^4.2.2",
"mysql2": "^2.3.3",
"passport": "^0.4.1",
"passport-steam": "^1.0.15",
"random": "^3.0.6",
"socket.io": "^4.2.0",
"socket.io-client": "^4.0.1",
"svg-gauge": "^1.0.6"
},
"devDependencies": {
"eslint": "^7.5.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2020": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"prefer-const": [
"error"
],
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
],
"linebreak-style": 0,
"require-atomic-updates": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
],
"*.{html,css,less,ejs}": [
"prettier --write",
"git add"
]
},
"eslintIgnore": [
"dashboard/public"
]
}