-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 895 Bytes
/
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
{
"name": "wfc2d-multiplayer-techdemo",
"version": "0.1.0",
"description": "A techdemo game realized to study the Wave Function Collapse and WebSockets in typescript",
"repository": {
"type": "git",
"url": "https://github.com/andreamoschetto/wfc2d-multiplayer-techdemo"
},
"scripts": {
"build-client": "parcel build src/client/src/index.html --dist-dir src/www",
"start-server": "ts-node src/server/main.ts",
"start": "npm run build-client && npm run start-server"
},
"author": "",
"license": "ISC",
"devDependencies": {
"buffer": "^6.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.8",
"cors": "^2.8.5",
"excalibur": "^0.27.0",
"express": "^4.18.2",
"parcel": "^2.9.3",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.1"
}
}