forked from HasangerGames/survivreloaded-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.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
{
"name": "survivreloaded",
"version": "0.3.0",
"description": "A community-made resurrection of the defunct online game surviv.io.",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node --enable-source-maps dist/server.js",
"test": "tsc && node --enable-source-maps dist/server.js",
"lint": "eslint . --fix --ext .ts",
"lint:ci": "eslint . --ext .ts"
},
"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.20.0"
},
"devDependencies": {
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^4.9.5"
}
}