-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 2.3 KB
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
34
35
36
37
{
"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:datepicker": "yarn workspace @feugene/granularity-datepicker 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",
"build:playground-config": "yarn workspace @feugene/granularity-playground-config build",
"build:playground-theme": "yarn workspace @feugene/granularity-playground-theme build",
"dev:playground": "yarn workspace @feugene/granularity-playground dev",
"build:playground-ssr": "yarn workspace @feugene/granularity-playground-ssr build",
"dev:playground-theme": "yarn workspace @feugene/granularity-playground-theme dev",
"dev:playground-ssr": "yarn workspace @feugene/granularity-playground-ssr dev",
"dev:showcase": "yarn workspace @feugene/granularity-showcase dev",
"test": "yarn test:granularity && yarn test:playground && yarn test:playground-theme && yarn test:playground-ssr",
"test:granularity": "yarn workspace @feugene/granularity test:run",
"lint:granularity": "yarn workspace @feugene/granularity lint",
"typecheck:granularity": "yarn workspace @feugene/granularity typecheck",
"coverage:granularity": "yarn workspace @feugene/granularity test:coverage",
"test:playground": "yarn workspace @feugene/granularity-playground test:run",
"test:playground-theme": "yarn workspace @feugene/granularity-playground-theme test:run",
"test:playground-ssr": "yarn workspace @feugene/granularity-playground-ssr test:run",
"test:showcase": "yarn workspace @feugene/granularity-showcase test:run",
"test:a11y": "yarn workspace @feugene/granularity-showcase test:a11y",
"test:visual": "yarn workspace @feugene/granularity-showcase test:visual",
"test:visual:update:linux": "yarn workspace @feugene/granularity-showcase test:visual:update:linux",
"typecheck:playground-config": "yarn workspace @feugene/granularity-playground-config typecheck"
}
}