-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 847 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "neomonopoly",
"version": "1.0.0",
"private": true,
"description": "NeoMonopoly - a turn-based strategy web game",
"scripts": {
"predev": "npm -w @neomonopoly/shared run build",
"dev": "concurrently -n shared,server,client -c yellow,cyan,magenta \"npm -w @neomonopoly/shared run dev\" \"npm -w @neomonopoly/server run dev\" \"npm -w @neomonopoly/client run dev\"",
"build": "npm -w @neomonopoly/shared run build && npm -w @neomonopoly/server run build && npm -w @neomonopoly/client run build",
"typecheck": "npm -w @neomonopoly/shared run build && npm -w @neomonopoly/server run typecheck && npm -w @neomonopoly/client run typecheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"concurrently": "^9.2.0"
},
"workspaces": [
"packages/*"
]
}