forked from colyseus/colyseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.25 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
77
78
79
80
81
82
{
"name": "@colyseus/monorepo",
"private": true,
"type": "module",
"workspaces": [
"bundles/*",
"packages/*",
"packages/drivers/*",
"packages/transport/*",
"packages/presence/*",
"packages/serializer/*"
],
"scripts": {
"build": "rollup -c && lerna run build",
"clean": "lerna clean",
"boot": "lerna bootstrap",
"test": "lerna run test --stream",
"example": "lerna run start --scope @colyseus/example --stream",
"update-contributors": "all-contributors generate",
"graph": "lerna list --graph",
"watch": "rollup -c --watch",
"bump": "lerna version prerelease --force-publish --no-push --no-git-tag-version",
"publish-alpha": "lerna publish prerelease --no-git-tag-version --dist-tag alpha",
"publish-stable": "lerna publish patch --no-git-tag-version",
"release": "lerna version --force-publish --no-push --no-git-tag-version",
"preversion": "npm run build",
"postinstall": "npm run boot"
},
"devDependencies": {
"@lerna/batch-packages": "^3.16.0",
"@lerna/filter-packages": "^4.0.0",
"@lerna/project": "^4.0.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.5",
"@types/debug": "^0.0.31",
"@types/express": "^4.16.1",
"@types/fossil-delta": "^1.0.0",
"@types/jest": "^26.0.24",
"@types/koa": "^2.0.49",
"@types/mocha": "^5.2.7",
"@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.14.13",
"cors": "^2.8.5",
"express": "^4.16.2",
"httpie": "^2.0.0-next.13",
"jest": "^27.0.6",
"koa": "^2.8.1",
"lerna": "^4.0.0",
"minimist": "^1.2.5",
"mocha": "^5.1.1",
"rimraf": "^2.7.1",
"rollup": "^2.47.0",
"rollup-plugin-node-externals": "^2.2.0",
"sinon": "^11.1.1",
"ts-jest": "^27.0.3",
"ts-node": "^7.0.1",
"ts-node-dev": "^1.1.6",
"tslint": "^5.11.0",
"typescript": "4.3.5"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src",
"test"
],
"reporter": [
"html",
"lcov"
],
"all": true
}
}