forked from openshift-assisted/assisted-installer-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.18 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
{
"description": "The Assisted Installer UI",
"devDependencies": {
"@openshift-assisted/toolbox": "workspace:*",
"dpdm": "^3.12.0",
"env-cmd": "^10.1.0",
"eslint": "^8.36.0",
"prettier": "2.8.4",
"rimraf": "^4.4.0",
"typescript": "4.9.5"
},
"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:all": "yarn workspaces foreach -v --topological-dev run build",
"check_circular_deps:all": "yarn workspaces foreach -vp run check_circular_deps",
"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 --cache --cache-strategy=content --cache-location=node_modules/.cache/eslint/.eslint-cache .",
"test:all": "yarn workspace @openshift-assisted/integration-tests-ocm run test:assisted-ui"
},
"workspaces": [
"apps/*",
"libs/*"
]
}