-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "emc-stats",
"version": "2.5.0",
"description": "A discord bot providing info on the EarthMC Minecraft server.",
"license": "CC-BY-NC-SA",
"main": "index.js",
"type": "module",
"scripts": {
"compile": "rimraf dist && tsc",
"reinstall": "rimraf node_modules && bun install",
"start-js": "bun run compile && node ./dist/index.js",
"start": "tsx index.ts",
"stop": "pm2 stop EMCS",
"reload": "pm2 startOrGracefulReload --attach ecosystem.json",
"restart": "bun run reinstall && pm2 startOrRestart ecosystem.json",
"watch": "pm2 start --attach ecosystem.json --watch",
"deploy": "pm2 deploy production"
},
"dependencies": {
"@isaacs/ttlcache": "^1.4.1",
"discord.js": "14.15.0",
"dotenv": "^16.4.7",
"earthmc": "^10.0.0",
"firebase": "10.12.4",
"firebase-admin": "12.2.0",
"moment": "2.30.1",
"striptags": "^3.2.0",
"tslib": "latest",
"tsx": "latest",
"undici": "^5"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.49.0",
"eslint-plugin-named-import-spacing": "^1.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"trustedDependencies": [
"protobufjs",
"esbuild",
"rimraf",
"tsx"
]
}