-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.24 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
{
"name": "sonarqube-webapp-enterprise",
"devDependencies": {
"@nx/eslint": "20.1.2",
"@nx/playwright": "20.1.2",
"@nx/vite": "20.1.2",
"@nx/web": "20.1.2",
"@playwright/test": "1.36.0",
"eslint": "8.57.0",
"nx": "20.1.2",
"nyc": "17.1.0",
"vite": "5.0.0"
},
"nx": {
"includedScripts": []
},
"scripts": {
"build": "yarn nx run-many -t build",
"build-analyze": "yarn nx run-many -t build-analyze",
"bundle": "yarn nx run-many -t bundle",
"clean": "yarn nx run-many -t clean",
"dep-check": "yarn nx run-many -t dep-check",
"format": "yarn nx run-many -t format-check --write",
"format-check": "yarn nx run-many -t format-check",
"lint": "yarn nx run-many -t lint --quiet",
"lint-report": "yarn nx run-many -t lint-report",
"install-all": "(cd server/sonar-web && yarn install) && (cd private/sq-cloud-e2e-tests && yarn install) && (cd private/apps/sq-cloud && yarn install)",
"start-sqc": "yarn nx start sq-cloud",
"start-sqs": "yarn nx start sq-server",
"test": "yarn nx run-many -t test",
"ts-check": "yarn nx run-many -t ts-check",
"validate": "yarn nx run-many -t validate"
},
"engines": {
"node": ">=18.20"
},
"packageManager": "yarn@4.5.3"
}