blockmine 1.4.1 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/package.json +4 -21
- package/package.json +19 -5
- package/backend/package-lock.json +0 -2539
package/backend/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src/server.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"start": "node
|
|
7
|
+
"start": "node ../backend/cli.js",
|
|
8
8
|
"dev": "nodemon",
|
|
9
9
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
10
|
},
|
|
@@ -14,25 +14,8 @@
|
|
|
14
14
|
"keywords": [],
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "ISC",
|
|
17
|
-
"dependencies": {
|
|
18
|
-
"@prisma/client": "^5.14.0",
|
|
19
|
-
"adm-zip": "^0.5.16",
|
|
20
|
-
"archiver": "^7.0.1",
|
|
21
|
-
"bcryptjs": "^3.0.2",
|
|
22
|
-
"cron-parser": "^5.3.0",
|
|
23
|
-
"express": "^4.19.2",
|
|
24
|
-
"fs-extra": "^11.3.0",
|
|
25
|
-
"mineflayer": "^4.20.1",
|
|
26
|
-
"multer": "^2.0.1",
|
|
27
|
-
"node-cron": "^4.1.0",
|
|
28
|
-
"pidusage": "^3.0.2",
|
|
29
|
-
"prisma": "^5.14.0",
|
|
30
|
-
"semver": "^7.6.2",
|
|
31
|
-
"socket.io": "^4.7.5",
|
|
32
|
-
"socks": "^2.8.5"
|
|
33
|
-
},
|
|
17
|
+
"dependencies": {},
|
|
34
18
|
"devDependencies": {
|
|
35
|
-
"nodemon": "^3.1.2"
|
|
36
|
-
"prisma": "^5.14.0"
|
|
19
|
+
"nodemon": "^3.1.2"
|
|
37
20
|
}
|
|
38
|
-
}
|
|
21
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
1
|
{
|
|
3
2
|
"name": "blockmine",
|
|
4
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
5
4
|
"description": "Мощная панель управления ботами для Майнкрафта.",
|
|
6
5
|
"author": "merka",
|
|
7
6
|
"license": "MIT",
|
|
@@ -26,12 +25,27 @@
|
|
|
26
25
|
],
|
|
27
26
|
"scripts": {
|
|
28
27
|
"dev": "concurrently \"npm run dev --workspace=backend\" \"npm run dev --workspace=frontend\"",
|
|
29
|
-
"postinstall": "npm install --
|
|
28
|
+
"postinstall": "npm install --workspace=frontend --ignore-scripts && prisma generate --schema=./backend/prisma/schema.prisma",
|
|
30
29
|
"build": "npm run build --workspace=frontend",
|
|
31
|
-
"prepublishOnly": "npm run build
|
|
30
|
+
"prepublishOnly": "npm run build"
|
|
32
31
|
},
|
|
33
32
|
"dependencies": {
|
|
34
|
-
"prisma": "^5.14.0"
|
|
33
|
+
"@prisma/client": "^5.14.0",
|
|
34
|
+
"adm-zip": "^0.5.16",
|
|
35
|
+
"archiver": "^7.0.1",
|
|
36
|
+
"bcryptjs": "^2.4.3",
|
|
37
|
+
"cron-parser": "^5.3.0",
|
|
38
|
+
"express": "^4.19.2",
|
|
39
|
+
"fs-extra": "^11.3.0",
|
|
40
|
+
"jsonwebtoken": "^9.0.2",
|
|
41
|
+
"mineflayer": "^4.20.1",
|
|
42
|
+
"multer": "^2.0.1",
|
|
43
|
+
"node-cron": "^4.1.0",
|
|
44
|
+
"pidusage": "^3.0.2",
|
|
45
|
+
"prisma": "^5.14.0",
|
|
46
|
+
"semver": "^7.6.2",
|
|
47
|
+
"socket.io": "^4.7.5",
|
|
48
|
+
"socks": "^2.8.5"
|
|
35
49
|
},
|
|
36
50
|
"devDependencies": {
|
|
37
51
|
"concurrently": "^8.2.2"
|