-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.68 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "3dtetrismultiplayer",
"version": "1.0.0",
"description": "Babylon 3D Tetris, but with added support for co-op Socket.IO multiplayer.",
"main": "./server/server.js",
"type": "module",
"scripts": {
"build": "webpack",
"webpack-watch": "webpack --config webpack.config.cjs --watch",
"server": "nodemon --watch src --exec \"tsx src/server/HeadlessApp.ts\"",
"dev": "concurrently \"npm:webpack-watch\" \"npm:server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TediSina/3DTetrisMultiplayer.git"
},
"keywords": [
"3D",
"Tetris",
"3DTetris",
"Tetris",
"JS",
"JavaScript",
"Multiplayer",
"Babylon",
"Socket",
"Coop",
"Socket.IO",
"Node.js",
"Node"
],
"author": "TediSina",
"license": "MIT",
"bugs": {
"url": "https://github.com/TediSina/3DTetrisMultiplayer/issues"
},
"homepage": "https://github.com/TediSina/3DTetrisMultiplayer#readme",
"dependencies": {
"@babylonjs/core": "^7.28.0",
"@babylonjs/gui": "^7.29.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babylonjs/materials": "^7.28.0",
"@types/express": "^5.0.0",
"@types/node": "^22.7.4",
"babel-loader": "^9.2.1",
"concurrently": "^9.0.1",
"express": "^4.21.0",
"nodemon": "^3.1.7",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
}
}