forked from colyseus/colyseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@colyseus/monorepo",
"version": "0.15.0",
"private": true,
"type": "module",
"workspaces": [
"bundles/*",
"packages/*",
"packages/drivers/*",
"packages/transport/*",
"packages/presence/*",
"packages/serializer/*"
],
"scripts": {
"build": "bun run build.ts",
"clean": "lerna clean",
"test": "lerna run test --stream",
"example": "lerna run start --scope @colyseus/example --stream",
"update-contributors": "all-contributors generate",
"graph": "lerna list --graph",
"watch": "node compile-packages.mjs --watch",
"publish-from-package-stable": "npm run build && lerna publish from-package",
"publish-from-package-preview": "npm run build && lerna publish from-package --dist-tag preview"
},
"devDependencies": {
"@lerna/batch-packages": "^3.16.0",
"@lerna/filter-packages": "^6.4.1",
"@lerna/project": "^6.4.1",
"@types/debug": "^0.0.31",
"@types/express": "^4.16.1",
"@types/fossil-delta": "^1.0.0",
"@types/ioredis": "^4.27.3",
"@types/koa": "^2.0.49",
"@types/mocha": "^10.0.1",
"@types/node": "^16.3.2",
"@types/sinon": "^10.0.2",
"all-contributors-cli": "^6.20.0",
"assert": "^2.0.0",
"benchmark": "^2.1.1",
"c8": "^7.7.2",
"colyseus.js": "^0.15.0",
"cors": "^2.8.5",
"esbuild": "^0.14.43",
"express": "^4.16.2",
"fast-glob": "^3.2.11",
"httpie": "^2.0.0-next.13",
"koa": "^2.8.1",
"lerna": "^7.2.0",
"minimist": "^1.2.5",
"mocha": "^10.2.0",
"rimraf": "^2.7.1",
"sinon": "^11.1.1",
"ts-jest": "^28.0.3",
"tslint": "^5.11.0",
"tsx": "^4.1.2",
"typescript": "^5.1.6"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src",
"test"
],
"reporter": [
"html",
"lcov"
],
"all": true
},
"engines": {
"node": "16.10.0",
"npm": "7.1.2"
}
}