-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 740 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 740 Bytes
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
{
"name": "text-legend-176",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"start": "node --max-old-space-size=2048 src/index.js",
"start:win": "set NODE_OPTIONS=--max-old-space-size=2048 && node src/index.js",
"db:migrate": "node src/db/migrate.js",
"db:cleanup-mob-respawns": "node src/db/cleanup_mob_respawns.js",
"db:purge-normal-mob-respawns": "node src/db/purge_mob_respawns_normal.js"
},
"dependencies": {
"bcrypt": "^6.0.0",
"express": "^4.19.2",
"knex": "^3.1.0",
"mysql2": "^3.11.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"socket.io": "^4.7.5",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1"
}
}