-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "colyseus-pixijs-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run start-client & npm run start-server",
"start-client": "parcel serve src/client/index.html",
"start-server": "tsx watch src/server/index.ts",
"build": "parcel build src/client/index.html && tsc",
"schema-codegen": "schema-codegen src/server/rooms/*.ts --ts --output src/client/schema/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Endel Dreyer",
"license": "MIT",
"engines": {
"node": ">=14.16.0"
},
"devDependencies": {
"@colyseus/loadtest": "^0.15.0",
"@types/express": "^4.16.1",
"@types/redis": "^2.8.12",
"debug": "^4.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"parcel": "^2.9.3",
"pixi-viewport": "^3.17.0",
"pixi.js": "^5.0.0-rc",
"punycode": "^1.4.1",
"ts-loader": "^5.3.3",
"tsx": "^3.12.7",
"typescript": "^4.2.2",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.5.1",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3"
},
"dependencies": {
"@colyseus/monitor": "^0.15.0",
"colyseus": "^0.15.0",
"colyseus.js": "^0.15.0",
"express": "^4.16.4",
"express-basic-auth": "^1.2.0",
"express-jwt": "^5.3.1"
}
}