-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
51 lines (51 loc) · 2.02 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
47
48
49
50
51
{
"description": "The Assisted Installer UI",
"devDependencies": {
"@openshift-assisted/toolbox": "workspace:*",
"@vitest/ui": "^0.34.5",
"dpdm": "^3.14.0",
"eslint": "^8.36.0",
"happy-dom": "^15.10.2",
"msw": "^1.3.1",
"prettier": "2.8.4",
"rimraf": "^4.4.0",
"typescript": "4.9.5",
"vitest": "^0.34.5"
},
"engines": {
"node": ">=14",
"yarn": ">=3.4.0"
},
"license": "Apache-2.0",
"name": "assisted-installer-ui",
"packageManager": "[email protected]",
"private": true,
"resolutions": {
"@types/react": "17.0.x"
},
"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 workspaces foreach -vp run format",
"lint:all": "yarn workspaces foreach -vp run lint",
"fix-code-style:all": "yarn workspaces foreach -vp run fix-code-style",
"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 test",
"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'",
"start:vitest-ui": "vitest --ui"
},
"type": "module",
"workspaces": [
"apps/*",
"libs/*",
"tools/*"
]
}