forked from openshift-assisted/assisted-installer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.95 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"description": "The Assisted Installer UI",
"devDependencies": {
"@openshift-assisted/toolbox": "workspace:*",
"@vitest/ui": "^0.34.7",
"dpdm": "^4.2.0",
"eslint": "^8.57.1",
"happy-dom": "^20.9.0",
"msw": "^2.14.6",
"prettier": "2.8.8",
"rimraf": "^6.0.0",
"typescript": "^5.9.3",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=20.19.0",
"yarn": ">=3.4.0"
},
"license": "Apache-2.0",
"name": "assisted-installer-ui",
"packageManager": "yarn@3.8.7",
"private": true,
"scripts": {
"_build:lib": "yarn workspace @openshift-assisted/ui-lib build && yarn workspace @openshift-assisted/chatbot build",
"_yalc:push": "bash -c \"for lib in ui-lib types locales chatbot; do yalc push --changed libs/\\${lib}; done\"",
"build:all": "yarn workspaces foreach -v --topological-dev run build",
"build:assisted-chatbot": "yarn workspace @openshift-assisted/chatbot build && yarn workspace @openshift-assisted/assisted-installer-ui-chatbot 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 -v run lint",
"process_new_strings": "yarn workspace @openshift-assisted/locales run process_new_strings",
"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:assisted_disconnected_ui": "yarn workspace @openshift-assisted/assisted-disconnected-ui serve",
"start:assisted_chatbot": "yarn workspace @openshift-assisted/assisted-installer-ui-chatbot start",
"start:assisted_chatbot:static": "yarn workspace @openshift-assisted/assisted-installer-ui-chatbot start:static",
"start:watch_mode": "yarn build:all && yarn run -T toolbox watch --dir=libs/ui-lib --dir=libs/types --dir=libs/locales --dir=libs/chatbot 'yarn _build:lib' 'yarn _yalc:push'",
"start:vitest-ui": "vitest --ui"
},
"type": "module",
"resolutions": {
"ajv@^8.0.0": "^8.18.0",
"ajv@^8.9.0": "^8.18.0",
"ajv@^8.17.1": "^8.18.0",
"glob": "^11.1.0",
"globby": "^11.1.0",
"pify": "^5.0.0",
"del": "^6.1.1",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"minimatch": "^10.2.5",
"serialize-javascript": "^7.0.6",
"qs": "^6.15.2"
},
"workspaces": [
"apps/*",
"libs/*",
"tools/*"
]
}