forked from runejs/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.24 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
{
"name": "rune.js",
"version": "0.4.0",
"description": "",
"main": "src/game-server.ts",
"scripts": {
"server": "npm start",
"start": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js\"",
"lint": "tslint --project tsconfig.json",
"fake-players": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers\"",
"fake-players-tick": "rm -rf dist/ && npm run build && concurrently \"npm run watch-plugins\" \"node --max-old-space-size=4096 dist/main.js -fakePlayers -tickTime\"",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"watch-plugins": "nodemon --watch src/plugins/ --exec \"npm run build\" -e ts"
},
"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": "TheBlackParade",
"license": "GPL-3.0",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@runejs/cache-parser": "0.6.3",
"@runejs/byte-buffer": "1.0.8",
"@runejs/logger": "^1.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",
"lodash": "^4.17.15",
"quadtree-lib": "^1.0.9",
"rxjs": "^6.5.4",
"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.0.2"
},
"devDependencies": {
"@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/lodash": "^4.14.149",
"@types/node": "^12.12.6",
"@types/uuid": "^3.4.6",
"@types/yargs": "^13.0.4",
"chokidar": "^3.3.1",
"concurrently": "^5.1.0",
"nodemon": "^2.0.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.0"
}
}