This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "survivreloaded",
"version": "0.6.2",
"description": "A community-made resurrection of the defunct online game surviv.io.",
"main": "dist/src/server.js",
"scripts": {
"build": "tsc",
"start": "node --enable-source-maps dist/src/server.js",
"dev": "tsc-watch --incremental --sourceMap --onSuccess \"nodemon --enable-source-maps --watch dist/ ./dist/src/server.js\"",
"dev:ws": "node --enable-source-maps dist/src/webSocketServer.js",
"dev:test": "tsc && node --enable-source-maps dist/stressTest.js",
"lint": "eslint . --fix --ext .ts,.js",
"lint:ci": "eslint . --ext .ts,.js"
},
"engines": {
"node": ">=18.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SurvivReloaded/survivreloaded-server.git"
},
"author": "Henry Sanger",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/SurvivReloaded/survivreloaded-server/issues"
},
"homepage": "https://resurviv.io",
"dependencies": {
"bit-buffer": "^0.2.5",
"cookie": "^0.5.0",
"planck": "1.0.0-alpha.4",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.23.0",
"ws": "^8.14.1"
},
"devDependencies": {
"@types/cookie": "^0.5.2",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.49.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
}
}