forked from lateleite/cso2-master-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 912 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 912 Bytes
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
{
"name": "cso2-master-server",
"version": "0.8.1",
"repository": "github:Ochii/cso2-master-server",
"description": "A master server for Nexon's Counter-Strike: Online 2",
"author": "Luís Leite",
"license": "MIT",
"main": "src/server.ts",
"scripts": {
"start": "node dist/server.js",
"build": "npm run tslint && npm run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"dependencies": {
"app-module-path": "^2.2.0",
"commander": "^2.19.0",
"hexy": "^0.3.0",
"int64-buffer": "^0.99.1007",
"ip": "^1.1.5",
"stream-buffers": "^3.0.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/ip": "0.0.31",
"@types/node": "^10.12.20",
"@types/stream-buffers": "^3.0.2",
"@types/uuid": "^3.4.4",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
}
}