-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "rts_io_gameserver",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "webpack --watch --config webpack.config.js",
"start": "tsx watch gameserver/index",
"dev": "webpack --config webpack.config.js --watch && tsx watch gameserver/index.ts",
"deploy": "npx webpack --config webpack.config.js && tsx gameserver/index",
"test": "ts-jest",
"run_server": "docker-compose up -d --build --remove-orphans",
"stop_server": "docker-compose down"
},
"author": "keshav",
"license": "ISC",
"dependencies": {
"@colyseus/command": "^0.2.1",
"@colyseus/monitor": "^0.15.4",
"@colyseus/playground": "^0.15.10",
"@colyseus/tools": "^0.15.30",
"@types/jquery": "^3.5.29",
"@types/ws": "^8.5.10",
"axios": "^1.6.8",
"colyseus": "^0.15.15",
"colyseus.js": "^0.15.15",
"cors": "^2.8.5",
"css-loader": "^6.10.0",
"dbly-linked-list": "^0.3.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"html-webpack-plugin": "^5.6.0",
"jquery": "^3.6.0",
"nanoid": "^5.0.4",
"nodemon": "^2.0.15",
"npx": "^10.2.2",
"phaser": "^3.70.0",
"phaser-ui-tools": "^2.0.0-beta",
"phaser3-rex-plugins": "^1.80.2",
"quadtree-lib": "^1.0.9",
"sat": "^0.9.0",
"simplex-noise": "^4.0.1",
"socket.io": "^4.4.1",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"ws": "^8.16.0",
"xstate": "^4.32.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/sat": "^0.0.35",
"jest": "^29.3.1"
}
}