-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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
{
"name": "dragonbound",
"version": "1.0.0",
"description": "DragonBoundRe - Remake of the original DragonBound game",
"main": "index.js",
"scripts": {
"start:web": "node src/web/main/server.js",
"start:game": "node src/game.js",
"dev:web": "nodemon --exitcrash src/web/main/server.js",
"dev:game": "nodemon --exitcrash src/game.js",
"start:scheduler": "node src/ranking/scheduler.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DragonBoundR/DragonBound.git"
},
"keywords": [],
"author": "xfs-team",
"license": "ISC",
"bugs": {
"url": "https://github.com/DragonBoundR/DragonBound/issues"
},
"homepage": "https://github.com/DragonBoundR/DragonBound#readme",
"devTeam": [
{
"name": "lnferno",
"github": "https://github.com/Ox18"
},
{
"name": "Rafael",
"github": "https://github.com/JesusRafaelAreva"
},
{
"name": "Luizinstyle",
"github": "https://github.com/luizxd0"
}
],
"dependencies": {
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-handlebars": "^8.0.1",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.0",
"fbgraph": "^0.1.0",
"geoip-lite": "^1.4.10",
"helmet": "^7.1.0",
"ignore-case": "^0.1.0",
"md5": "^2.3.0",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"mysql": "^2.18.1",
"mysql2": "^3.11.0",
"node-cron": "^3.0.3",
"pngjs": "^7.0.0",
"promise": "^8.3.0",
"setimmediate": "^1.0.5",
"underscore": "^1.13.7",
"uninstall": "^0.0.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"log4js": "^6.9.1",
"morgan": "^1.10.0",
"nodemailer": "^6.9.14",
"nodemon": "^3.1.4",
"ws": "^8.18.0"
},
"_moduleAliases": {
"@web": "src/web",
"@shared": "src/shared",
"@infra": "src/infra",
"@game": "src/game"
}
}