forked from eclipse-che/che-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.75 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
{
"name": "@eclipse-che/dashboard",
"version": "7.76.0-next",
"description": "Dashboard for Eclipse Che",
"private": true,
"workspaces": [
"packages/*"
],
"bugs": {
"url": "https://github.com/eclipse/che/issues"
},
"homepage": "https://github.com/eclipse-che/che-dashboard",
"engines": {
"yarn": ">=1.22",
"node": ">=16"
},
"license": "EPL-2.0",
"scripts": {
"build": "lerna run build --scope=@eclipse-che/dashboard-* --concurrency 1",
"build:dev": "lerna run build:dev --scope=@eclipse-che/dashboard-*",
"prebuild": "lerna run build --scope=@eclipse-che/common",
"prebuild:dev": "yarn prebuild",
"frontend:start": "yarn workspace @eclipse-che/dashboard-frontend start",
"start": "${PWD}/run/local-run.sh $@",
"start:prepare": "${PWD}/run/prepare-local-run.sh",
"start:cleanup": "${PWD}/run/revert-local-run.sh",
"license:check": "${PWD}/scripts/container_tool.sh run --rm -t -v ${PWD}/:/workspace/project quay.io/che-incubator/dash-licenses@sha256:72290f67f297a31b7b9b343d19f42cc0ecc90e1d36cc9f18473c586a70e4b7eb --check",
"license:generate": "${PWD}/scripts/container_tool.sh run --rm -t -v ${PWD}/:/workspace/project quay.io/che-incubator/dash-licenses:next",
"test": "lerna run test --stream -- --no-cache $@",
"test:check": "yarn pretest && yarn --cwd packages/dashboard-frontend test --config=jest.config.check.js",
"pretest": "yarn run prebuild",
"test:coverage": "yarn run test -- --coverage",
"format:check": "yarn workspaces run format:check",
"format:fix": "lerna run --stream format:fix",
"lint:check": "yarn workspaces run lint:check",
"lint:fix": "lerna run --stream lint:fix",
"patch": "${PWD}/run/patch.sh $@"
},
"devDependencies": {
"lerna": "^6"
}
}