forked from openshift-assisted/assisted-installer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.95 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
{
"description": "The Assisted Installer UI",
"devDependencies": {
"@openshift-assisted/toolbox": "workspace:*",
"dpdm": "^3.12.0",
"eslint": "^8.36.0",
"prettier": "2.8.4",
"rimraf": "^4.4.0",
"typescript": "4.9.5",
"vitest": "^0.32.2"
},
"engines": {
"node": ">=14"
},
"license": "Apache-2.0",
"name": "assisted-installer-ui",
"packageManager": "[email protected]",
"private": true,
"resolutions": {
"@types/react": "<17.0.30",
"@types/react-dom": "<17.0.30"
},
"scripts": {
"_build:ui-lib": "yarn workspace @openshift-assisted/ui-lib build",
"_yalc:push": "bash -c \"for lib in ui-lib types locales; do yalc push --changed libs/\\${lib}; done\"",
"build:all": "yarn workspaces foreach -v --topological-dev run build",
"check:circular_deps:all": "yarn workspaces foreach -vp run check_circular_deps",
"check:translation_files": "yarn workspace @openshift-assisted/locales run validate_translation_files",
"check:types:all": "yarn workspaces foreach -vp run check_types",
"clean:all": "yarn workspaces foreach -vp run clean && yarn rimraf node_modules",
"format:all": "yarn prettier --cache --cache-strategy=content --check .",
"lint:all": "yarn eslint --max-warnings 0 --cache --cache-strategy=content --cache-location=node_modules/.cache/eslint/.eslint-cache .",
"test:open:dev": "yarn workspace @openshift-assisted/ui-lib-tests run cy:open:dev",
"test:open": "yarn workspace @openshift-assisted/ui-lib-tests run cy:open",
"test:run": "yarn workspace @openshift-assisted/ui-lib-tests run cy:run",
"test:unit": "yarn workspaces foreach -v run vitest",
"start:assisted_ui": "yarn workspace @openshift-assisted/assisted-ui serve",
"start:watch_mode": "yarn build:all && yarn run -T toolbox watch --dir=libs/ui-lib --dir=libs/types --dir=libs/locales 'yarn _build:ui-lib' 'yarn _yalc:push'"
},
"type": "module",
"workspaces": [
"apps/*",
"libs/*",
"tools/*"
]
}