forked from etternagame/NodeMultiEtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.12 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "multiett",
"version": "0.1.0",
"description": "Etterna websocket multiplayer/chat server implementation",
"repository": {
"type": "git",
"url": "https://github.com/etternagame/NodeMultiEtt"
},
"bugs": {
"url": "https://github.com/etternagame/NodeMultiEtt/issues"
},
"main": "./build/start.js",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.16.0",
"@types/mongodb": "^3.0.19",
"@types/request": "^2.47.1",
"@types/ws": "^6.0.1",
"@types/uws": "0.13.2",
"bcrypt": "^5.0.0",
"cli-table": "^0.3.1",
"colors": "^1.3.0",
"discord.js": "^11.3.2",
"dotenv": "^6.2.0",
"express": "^4.16.2",
"minimist": "^1.2.3",
"mongodb": "^3.0.4",
"request": "^2.85.0",
"uws": "10.148.1",
"winston": "^3.1.0",
"ws": "^6.1.2"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unicorn": "^6.0.1",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"prettier": "^1.11.1",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^21.0.2"
},
"scripts": {
"start": "yarn run build && node built/start.js",
"test": "echo test",
"lint": "eslint --fix **/*.js",
"format": "prettier --write **/*.{js,json,md}",
"postinstall": "yarn run build",
"build": "node ./node_modules/typescript/bin/tsc"
},
"husky": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{j,t}s": [
"eslint --fix",
"git add"
],
"*.{json,md,yml}": [
"prettier --write",
"git add"
]
},
"contributors": [
{
"name": "Nicolas Abram Lujan",
"email": "[email protected]"
},
{
"name": "theropfather"
},
{
"name": "Fission"
}
],
"keywords": [
"etterna",
"websocket",
"server",
"game",
"multiplayer",
"chat"
],
"author": "Nicolas Abram Lujan",
"license": "MIT"
}