-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.87 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
{
"name": "codedesignplus",
"version": "0.0.0",
"license": "LGPL",
"scripts": {
"affected": "npx nx show projects --affected --skip-nx-cache --head=HEAD --base=remotes/origin/main",
"affected:restore": "npx nx affected --skip-nx-cache --target restore --head=HEAD --base=remotes/origin/main",
"affected:format": "npx nx affected --skip-nx-cache --target format --head=HEAD --base=remotes/origin/main",
"affected:build": "npx nx affected --skip-nx-cache --parallel 1 --target build --head=HEAD --base=remotes/origin/main",
"affected:test": "npx nx affected --skip-nx-cache --target test --head=HEAD --base=remotes/origin/main",
"affected:sonarqube": "npx nx affected --skip-nx-cache --parallel 1 --target sonarqube --head=HEAD --base=remotes/origin/main",
"affected:graph": "npx nx affected --skip-nx-cache --target dep-graph --head=HEAD --base=remotes/origin/main",
"all:restore": "npx nx run-many --all --skip-nx-cache --target restore --parallel 1 ",
"all:format": "npx nx run-many --all --skip-nx-cache --target format",
"all:build": "npx nx run-many --all --skip-nx-cache --target build --parallel 1",
"all:test": "npx nx run-many --all --skip-nx-cache --target test --parallel 1",
"all:sonarqube": "npx nx run-many --all --skip-nx-cache --target sonarqube --parallel 1",
"all-cache:restore": "npx nx run-many --all --target restore",
"all-cache:format": "npx nx run-many --all --target format",
"all-cache:build": "npx nx run-many --all --target build",
"all-cache:test": "npx nx run-many --all --target test",
"all-cache:sonarqube": "npx nx run-many --all --target sonarqube --parallel 1"
},
"private": true,
"dependencies": {
},
"devDependencies": {
"@nx/js": "16.10.0",
"nx": "16.10.0",
"nx-cloud": "latest",
"@codedesignplus/netcore": "^1.0.3-rc.0",
"@nrwl/workspace": "^16.10.0"
}
}