-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@feugene/granularity-workspace",
"private": true,
"packageManager": "yarn@1.22.22",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "yarn build:granularity && yarn build:showcase",
"build:granularity": "yarn workspace @feugene/granularity build",
"build:playground": "yarn workspace @feugene/granularity-playground build",
"build:showcase": "yarn workspace @feugene/granularity-showcase build",
"build:playground-empty": "yarn workspace @feugene/granularity-playground-empty build",
"dev:playground": "yarn workspace @feugene/granularity-playground dev",
"dev:showcase": "yarn workspace @feugene/granularity-showcase dev",
"test": "yarn test:granularity && yarn test:playground",
"test:granularity": "yarn workspace @feugene/granularity test:run",
"coverage:granularity": "yarn workspace @feugene/granularity test:coverage",
"test:playground": "yarn workspace @feugene/granularity-playground test:run",
"test:showcase": "yarn workspace @feugene/granularity-showcase test:run"
}
}