-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "yukon-server",
"version": "1.10.1-beta",
"description": "A server for https://github.com/wizguin/yukon",
"scripts": {
"dev": "babel-watch ./src/World.js Login Blizzard",
"build": "rimraf dist && babel src -d dist --copy-files",
"start": "pm2 start ecosystem.config.js",
"stop": "pm2 stop ecosystem.config.js",
"restart": "pm2 restart ecosystem.config.js",
"list": "pm2 list",
"logs": "pm2 logs",
"monit": "pm2 monit",
"secret-gen": "node ./utils/secret-gen.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wizguin/yukon-server.git"
},
"author": "wizguin",
"license": "MIT",
"bugs": {
"url": "https://github.com/wizguin/yukon-server/issues"
},
"homepage": "https://github.com/wizguin/yukon-server#readme",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.3",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.24.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-watch": "^7.8.1",
"eslint": "^8.57.0",
"rimraf": "^5.0.5"
},
"dependencies": {
"bcrypt": "^5.1.1",
"fastest-validator": "^1.17.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.9.2",
"pm2": "^5.3.1",
"rate-limiter-flexible": "^3.0.6",
"sequelize": "^5.22.5",
"socket.io": "^4.7.5",
"uuid": "^9.0.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.3"
}
}