-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 958 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 958 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
25
26
27
28
29
30
31
32
33
{
"name": "scoreboard",
"version": "4.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "concurrently -c auto \"npm:start-*\"",
"start-server": "npm run start -w server",
"start-client": "npm run start -w client",
"start-common": "npm run start -w common",
"start-common-ui": "npm run start -w common-ui",
"start-tests": "npm run start -w tests",
"start-hall-of-fame": "npm run start -w hall-of-fame",
"prod": "npm run prod -w server",
"build": "npm run build --workspaces --if-present",
"ts-check": "npm run ts-check --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"format": "prettier -w ."
},
"workspaces": [
"common",
"common-ui",
"client",
"hall-of-fame",
"server",
"tests"
],
"devDependencies": {
"concurrently": "^9.1.2",
"prettier": "^3.5.3"
}
}