forked from crawl/crawl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 869 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "crawl-workspace",
"private": true,
"version": "0.0.1",
"packageManager": "npm@10.9.3",
"workspaces": [
"crawl-ref/source/webserver/client/lobby",
"crawl-ref/source/webserver/client/game"
],
"scripts": {
"build": "npm-run-all build:lobby build:game",
"build:lobby": "npm run build --workspace=crawl-lobby",
"build:game": "npm run build --workspace=crawl-game",
"lint": "npm-run-all lint:lobby lint:game",
"lint:lobby": "npm run lint --workspace=crawl-lobby",
"lint:game": "npm run lint --workspace=crawl-game",
"format": "npm-run-all format:lobby format:game",
"format:lobby": "npm run format --workspace=crawl-lobby",
"format:game": "npm run format --workspace=crawl-game"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}