forked from CrabbytheCrab/Crabdiep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "diepcustom",
"version": "1.0.0",
"description": "An open source diep.io custom private-server template",
"main": "index.js",
"contributors": [
"ABC <github.com/ABCxFF>",
"Binary <github.com/binary-person>",
"Crabby <github.com/Craabby>",
"diep.io <github.com/diepiodiscord>",
"xScripty (Void) <github.com/c86ec23b-fef1-4979-b2fa-b9adc351b8cc>"
],
"license": "AGPL-3.0-only",
"scripts": {
"build": "npx tsc",
"start": "node index",
"server": "npm run build && npm run start",
"docker:build": "docker build --tag diep-local .",
"docker:start": "docker run --pull never --rm --publish ${PORT:-8080}:8080 --env PORT=8080 --env ORIGIN_URL --env SERVER_INFO --env APP_KEY --env NODE_ENV --init --interactive --tty diep-local",
"docker": "npm run docker:build && npm run docker:start"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"@types/node": "^16.4.0",
"@types/ws": "^8.0.0",
"chalk": "^4.1.1",
"tweetnacl": "^1.0.3",
"ws": "^8.0.0"
},
"devDependencies": {
"typescript": "^4.8.2"
}
}