-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "diep",
"version": "0.1.0",
"description": "diep.io clone",
"author": "erics118",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@parcel/plugin": "^2.12.0",
"@types/node": "^20.14.2",
"parcel": "^2.12.0",
"process": "^0.11.10",
"rimraf": "^5.0.7",
"tsx": "^4.15.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@colyseus/monitor": "^0.15.6",
"@colyseus/playground": "^0.15.12",
"@colyseus/schema": "^2.0.32",
"@colyseus/tools": "^0.15.39",
"colyseus": "^0.15.17",
"colyseus.js": "^0.15.22",
"express-basic-auth": "^1.2.1",
"phaser": "^3.80.1",
"serve": "^14.2.3"
},
"scripts": {
"start:server": "tsx watch src/server/index.ts",
"start:client": "parcel serve public/client.html",
"build:server": "rimraf lib && tsc",
"build:client": "rimraf dist && parcel build public/client.html",
"start:server:prod": "node lib/server/index.js",
"start:client:prod": "serve dist",
"clean": "rimraf lib dist .devmode.json .parcel-cache",
"format": "biome format --write ./src",
"lint": "biome lint ./src",
"fix": "biome check --write ./src",
"ci": "biome ci ./src"
}
}