forked from dejavueakay/orangebot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "orangebot",
"version": "5.0.0",
"description": "OrangeBot is a CS:GO matchmaking bot written in node.js via typescript. It uses udp logging and remote rcon to execute server commands based on chat !commands.",
"main": "src/index.ts",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"start": "node dist/src/index",
"build": "tsc -p ./tsconfig.json",
"dev": "tsc -w --noEmit -p ./tsconfig.json",
"eslint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/gson88/orangebot"
},
"dependencies": {
"@types/steamid": "1.1.0",
"colors": "1.3.3",
"ip": "1.1.5",
"minimist": "1.2.0",
"named-regexp": "0.1.1",
"public-ip": "3.2.0",
"simple-rcon": "0.3.1",
"socket.io": "2.2.0",
"steamid": "1.1.3",
"tcp-ping": "0.1.1"
},
"devDependencies": {
"@types/node": "12.7.2",
"@types/public-ip": "3.1.0",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"babel-eslint": "10.0.2",
"eslint": "6.2.1",
"eslint-plugin-babel": "5.3.0",
"prettier": "1.18.2",
"typescript": "3.5.3"
}
}