-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.27 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.27 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
{
"name": "@stackrox/ui",
"description": "Deprecated top-level package.json for StackRox UI",
"version": "0.0.0",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"clean": "rm -rf build test-results; npm --prefix apps/platform run clean",
"start": "CI=true npm --prefix apps/platform run start",
"lint": "npm --prefix apps/platform run lint",
"test": "CI=true npm --prefix apps/platform run test",
"test-e2e": "TEST_RESULTS_OUTPUT_DIR=../../test-results npm --prefix apps/platform run test-e2e",
"test-e2e:ocp": "TEST_RESULTS_OUTPUT_DIR=../../test-results npm --prefix apps/platform run test-e2e:ocp",
"test-component": "npm --prefix apps/platform run test-component",
"posttest-e2e:coverage": "mv apps/platform/coverage/ ./test-results/artifacts/",
"prebuild": "npm run clean",
"build": "npm --prefix apps/platform run build && npm --prefix apps/platform run build:ocp-plugin",
"postbuild": "mv apps/platform/build/ .",
"connect": "../scripts/connect-ui.sh ${1}",
"deploy": "../deploy/k8s/deploy.sh",
"deploy-local": "../deploy/k8s/deploy-local.sh",
"forward": "../scripts/port-forward-ui.sh"
}
}