-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.48 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
{
"private": true,
"name": "my-app",
"version": "1.0.0",
"description": "npm init template for bootstrapping an empty Colyseus project",
"main": "lib/index.js",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only src/index.ts",
"loadtest": "colyseus-loadtest loadtest/example.ts --room my_room --numClients 2",
"build": "npm run clean && tsc && node node_modules/copyfiles/copyfiles package.json ./lib && node node_modules/copyfiles/copyfiles arena.env ./lib",
"clean": "node node_modules/rimraf/bin lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/colyseus/create-colyseus/issues"
},
"homepage": "https://github.com/colyseus/create-colyseus#readme",
"devDependencies": {
"@colyseus/loadtest": "^0.14.3",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/uniqid": "^5.3.0",
"copyfiles": "^2.4.1",
"rimraf": "^2.7.1",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^3.4.5"
},
"dependencies": {
"@colyseus/arena": "^0.14.9",
"@colyseus/command": "^0.1.7",
"@colyseus/monitor": "^0.14.0",
"@colyseus/social": "^0.10.9",
"colyseus": "^0.14.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"uniqid": "^5.3.0",
"wink-eng-lite-model": "https://github.com/winkjs/wink-eng-lite-model/releases/download/1.3.0/wink-eng-lite-model-1.3.0.tgz",
"wink-nlp": "^1.5.0"
}
}