-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
83 lines (83 loc) · 2.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
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
{
"name": "ygopro-salvation-server",
"description": "YGOPro US Server (Salvation) - Saving Yu-Gi-Oh!",
"main": "bin.js",
"version": "6.0.0",
"private": true,
"keywords": [
"ygopro",
"Salvation Development",
"yugioh"
],
"repository": {
"type": "git",
"url": "https://github.com/salvationdevelopment/YGOPro-Salvation-Server.git"
},
"dependencies": {
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"bufferutil": "^4.0.1",
"colors": "^1.3.3",
"compression": "^1.7.4",
"ddos": "^0.1.37",
"dotenv": "^4.0.0",
"elo-rank": "^1.0.3",
"express": "^4.17.3",
"express-http-proxy": "^1.6.2",
"ffi": "^2.3.0",
"function-queue": "0.0.12",
"helmet": "^3.21.2",
"hsts": "^2.2.0",
"json": "^10.0.0",
"jsonfile": "^2.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.2",
"nedb": "^1.7.2",
"nodemailer": "^6.6.1",
"nodemailer-direct-transport": "^3.3.2",
"primus": "^7.3.3",
"primus-rooms": "^3.4.3",
"random-port": "^0.1.0",
"request": "^2.88.0",
"sanitizer": "^0.1.3",
"serve": "^11.3.2",
"serve-index": "^1.9.1",
"smtp-server": "^3.5.0",
"sparkpost": "^2.1.3",
"toobusy-js": "*",
"utf-8-validate": "^5.0.2",
"uuid": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz",
"ws": "^7.4.6",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"chai": "^3.5.0",
"cypress": "^6.2.0",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"pkg": "^4.4.1"
},
"bugs": "https://github.com/salvationdevelopment/YGOPro-Salvation-Server/issues",
"author": "[email protected]",
"homepage": "http://ygopro.us",
"license": "LicenseRef-LICENSE",
"scripts": {
"start": "node ./",
"dev": "nodemon ./",
"test": "jest --forceExit",
"server": "node server",
"ygopro": "cd src && node application_ygopro",
"add-binaries": "npm run banlist && copy .\\node_modules\\ffi\\build\\Release\\ffi_bindings.node .\\bin && copy .\\node_modules\\ref\\build\\Release\\binding.node .\\bin",
"build": "npm run add-binaries && pkg . --targets node10-win-x64 --out-path ./bin",
"banlist": "node ./src/updater/banlist.js",
"cypress:open": "./node_modules/.bin/cypress open"
},
"bin": "bin.js",
"pkg": {
"assets": [
"http/**/*",
"node_modules/**/*",
"src/core/bin/**/*"
]
}
}