forked from runejs/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.42 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
{
"name": "@runejs/server",
"version": "1.0.0-alpha.0",
"description": "A RuneScape game server emulator written in TypeScript.",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && concurrently \"npm run build:watch\" \"npm run start:infra\" \"npm run start:game\"",
"start:game": "nodemon --delay 5000ms --max-old-space-size=2048 dist/index.js",
"start:game:dev": "npm run build && concurrently \"npm run build:watch\" \"npm run start:game\"",
"start:login": "node --max-old-space-size=1024 dist/game-engine/login-server.js",
"start:update": "node --max-old-space-size=1024 dist/game-engine/update-server.js",
"start:infra": "concurrently \"npm run start:update\" \"npm run start:login\"",
"start:standalone": "concurrently \"npm run start:infra\" \"npm run start:game\"",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"fake-players": "concurrently \"npm run build:watch\" \"node --max-old-space-size=4096 dist/index.js -fakePlayers\"",
"fake-players-tick": "concurrently \"npm run build:watch\" \"node --max-old-space-size=4096 dist/index.js -fakePlayers -tickTime\"",
"build:watch": "babel ./src --out-dir dist --extensions \".ts,.tsx,.js\" --source-maps --watch",
"build": "rimraf dist && babel ./src --out-dir dist --extensions \".ts,.tsx,.js\" --source-maps"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rune-js/server.git"
},
"bugs": {
"url": "https://github.com/rune-js/server/issues"
},
"homepage": "https://github.com/rune-js/server#readme",
"author": "Tynarus",
"license": "GPL-3.0",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@runejs/cache-parser": "0.7.0",
"@runejs/core": "^1.0.0-beta.0",
"@runejs/login-server": "^1.0.0-beta.2",
"@runejs/update-server": "^1.0.0-beta.0",
"bcrypt": "^5.0.0",
"bigi": "^1.4.2",
"body-parser": "^1.19.0",
"crc-32": "^1.2.0",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"json5": "^2.1.3",
"lodash": "^4.17.15",
"quadtree-lib": "^1.0.9",
"rxjs": "^7.0.0-beta.8",
"source-map-support": "^0.5.16",
"ts-node": "^8.4.1",
"tslib": "^1.10.0",
"typescript": "^3.7.2",
"uuid": "^3.3.3",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@halkeye/tscpaths": "0.0.9",
"@types/body-parser": "^1.17.1",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.6",
"@types/js-yaml": "^3.12.1",
"@types/json5": "0.0.30",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.6",
"@types/uuid": "^3.4.6",
"@types/yargs": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-plugin-module-resolver": "^4.0.0",
"chokidar": "^3.4.3",
"concurrently": "^5.1.0",
"eslint": "^7.12.1",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"tsconfig-paths": "^3.9.0"
}
}