-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@eclipse-che/dashboard",
"version": "7.121.0-next",
"description": "Dashboard for Eclipse Che",
"private": true,
"workspaces": {
"packages": [
"packages/common",
"packages/dashboard-backend",
"packages/dashboard-frontend"
]
},
"bugs": {
"url": "https://github.com/eclipse/che/issues"
},
"homepage": "https://github.com/eclipse-che/che-dashboard",
"engines": {
"node": ">=18"
},
"license": "EPL-2.0",
"scripts": {
"build": "yarn workspaces foreach -A run build",
"build:dev": "yarn workspaces foreach -A run build:dev",
"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": "license-tool --check",
"license:generate": "license-tool --harvest",
"test": "yarn run pretest && yarn workspaces foreach -A run test --no-cache",
"test:check": "yarn run pretest && yarn workspace @eclipse-che/dashboard-frontend test --config=jest.config.check.js",
"pretest": "yarn workspace @eclipse-che/common run build",
"test:coverage": "yarn run pretest && yarn workspaces foreach -A run test --coverage",
"format:check": "yarn workspaces foreach -A run format:check",
"format:fix": "yarn workspaces foreach -A run format:fix",
"lint:check": "yarn workspaces foreach -A run lint:check",
"lint:fix": "yarn workspaces foreach -A run lint:fix",
"deploy:patch": "$PWD/run/patch.sh",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eclipse-che/license-tool": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
"prettier --check"
],
"*.{css,scss,md,json}": [
"prettier --check"
]
},
"resolutions": {
"@babel/helpers": "^7.26.10",
"@babel/runtime": "^7.26.10",
"@adobe/css-tools": "^4.3.2",
"@hapi/hoek": "^10.0.1",
"ajv@^6.0.0": "6.14.0",
"axios": "1.16.1",
"bn.js": "^5.2.0",
"braces": "^3.0.3",
"cipher-base": "^1.0.6",
"cross-spawn": "^7.0.6",
"elliptic": "^6.6.1",
"find-my-way": "9.0.1",
"form-data": "4.0.6",
"glob": "^11.1.0",
"glob-parent": "^6.0.2",
"js-yaml": "^4.2.0",
"jsonpath-plus": "10.3.0",
"lodash": "^4.18.0",
"micromatch": "^4.0.8",
"nanoid": "3.3.8",
"pbkdf2": "^3.1.3",
"postcss": "^8.5.13",
"serialize-javascript": "^6.0.2",
"sha.js": "^2.4.12",
"ip-address": "10.2.0",
"ws": "8.21.0",
"tar": "^7.5.11",
"flatted": "^3.4.0",
"handlebars": "^4.7.9",
"yaml": "^2.8.3",
"picomatch": "^2.3.2",
"undici": "7.28.0",
"svgo": "^3.3.3",
"follow-redirects": "^1.16.0",
"@fastify/static": "^9.1.1",
"brace-expansion@^1.0.0": "^1.1.13",
"brace-expansion@^5.0.5": "5.0.7",
"fast-uri": "3.1.3"
}
}