-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1 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
{
"name": "an-io-game",
"description": "An online multiplayer browser game",
"version": "0.0.1",
"author": "Ronan Dalton",
"license": "MIT",
"homepage": "https://github.com/ronandalton/an-io-game#readme",
"bugs": {
"url": "https://github.com/ronandalton/an-io-game/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronandalton/an-io-game.git"
},
"scripts": {
"build": "npm run build:game_server",
"build:game_server": "npm run build -w @ronandalton/an-io-game-game-server",
"start": "concurrently --kill-others --names \"frontend,game-server\" \"npm run start:frontend\" \"npm run start:game_server\"",
"start:frontend": "npm run start -w @ronandalton/an-io-game-frontend",
"start:game_server": "npm run start -w @ronandalton/an-io-game-game-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"workspaces": [
"packages/frontend",
"packages/game_server"
],
"devDependencies": {
"concurrently": "^8.2.2"
}
}