-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.49 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": "server-backend-interface",
"version": "1.5.3",
"description": "Pigeon Server Backend",
"main": "dist/main.js",
"scripts": {
"build": "tsc -p .",
"start": "node dist/main.js",
"start:build": "tsc -p . && node dist/main.js",
"build:docker": "docker build -t pigeon-server-sbi:latest .",
"start:docker-nodaemon": "docker compose up",
"start:docker": "docker compose up -d",
"stop:docker": "docker compose stop",
"update": "git checkout main && git pull && npm run start:build",
"dev": "ts-node-dev --respawn --ignore-watch Sync[\\s\\S]+.json --transpile-only --watch src/ src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pigeon-Server/Server-Backend-Interface.git"
},
"keywords": [
"nodejs",
"minecraft",
"websocket"
],
"author": "Half_nothing",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Pigeon-Server/Server-Backend-Interface/issues"
},
"homepage": "https://github.com/Pigeon-Server/Server-Backend-Interface#readme",
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/archiver": "^6.0.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.14.202",
"@types/module-alias": "^2.0.4",
"@types/multer": "^1.4.12",
"@types/node": "^20.11.24",
"@types/uuid": "^10.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@sequelize/core": "^7.0.0-alpha.42",
"@sequelize/mysql": "^7.0.0-alpha.43",
"adm-zip": "^0.5.16",
"archiver": "^5.3.2",
"axios": "^1.6.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-session": "^1.18.1",
"express-ws": "^5.0.2",
"jsdoc": "^4.0.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"module-alias": "^2.2.3",
"moment-timezone": "^0.5.43",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.6.0",
"node-disk-info": "^1.3.0",
"string-random": "^0.1.3",
"uuid": "^11.0.3"
},
"engines": {
"node": ">=20"
},
"_moduleAliases": {
"@": "dist",
"@config": "config",
"@cache": "cache"
}
}