This repository was archived by the owner on Apr 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.83 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.83 KB
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
{
"name": "salad-bot",
"version": "2.2.1",
"description": "The discord bot for the salad server",
"main": "dist/index.js",
"engines": {
"node": ">=16.9.0"
},
"scripts": {
"lint": "gts lint",
"fix": "gts fix",
"build": "gts clean && tsc --project tsconfig.json && tsc-alias",
"start": "node dist/src/index.js",
"start:javaProxy": "node javaProxy/index.js",
"start:bedrockProxy": "node bedrockProxy/index.js",
"dev": "nodemon --watch \"src/**\" --ext \"ts\" --exec \"ts-node -r tsconfig-paths/register ./src/index.ts\"",
"dev:javaProxy": "nodemon --watch \"javaProxy/*\" --ext \"js\" --exec \"node ./javaProxy/index.js\"",
"dev:bedrockProxy": "nodemon --watch \"bedrockProxy/*\" --ext \"js\" --exec \"node ./bedrockProxy/index.js\"",
"new:task": "ts-node scripts/task.ts",
"new:event": "ts-node scripts/event.ts",
"new:interaction": "ts-node scripts/interaction.ts"
},
"author": "Jarco-dev",
"dependencies": {
"@prisma/client": "^4.8.0",
"@sansamour/node-socks": "^1.1.5",
"bedrock-protocol": "^3.22.0",
"discord.js": "^14.7.1",
"dns": "^0.2.2",
"dotenv": "^16.0.3",
"minecraft-protocol": "^1.36.2",
"moment": "^2.29.4",
"prismarine-chat": "^1.7.2",
"socks": "^2.7.1"
},
"devDependencies": {
"@types/inquirer": "^8.2.5",
"@types/node": "16.9.x",
"@types/node-cron": "^3.0.6",
"cron-validator": "^1.3.1",
"gts": "^3.1.1",
"handlebars": "^4.7.7",
"inquirer": "^8.2.5",
"node-cron": "^3.0.2",
"nodemon": "^2.0.20",
"prisma": "^4.8.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.4"
}
}