-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.19 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
{
"name": "codenames",
"version": "0.1.0",
"author": "Paul Landázuri",
"description": "This project tries to reproduce a web version of the board game [Codenames](<https://en.wikipedia.org/wiki/Codenames_(board_game)>).",
"homepage": "https://github.com/LandazuriPaul/Codenames#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LandazuriPaul/Codenames.git"
},
"bugs": {
"url": "https://github.com/LandazuriPaul/Codenames/issues"
},
"directories": {
"doc": "docs"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"generate-dictionaries": "node scripts/generate-dictionaries.js",
"start:domain": "yarn workspace @codenames/domain start:dev",
"start:lib": "yarn workspace @codenames/lib start:dev",
"start:common": "(yarn start:domain & yarn start:lib)",
"build:lib": "yarn workspace @codenames/lib build",
"build:common": "(yarn build:domain & yarn build:lib)",
"build:domain": "yarn workspace @codenames/domain build",
"build-push:server": "PACKAGE=server ./scripts/build_and_push.sh",
"build-push:client": "PACKAGE=client ./scripts/build_and_push.sh",
"lint": "yarn workspaces run lint"
}
}