-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·68 lines (68 loc) · 2.78 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
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
{
"private": true,
"name": "@andrew-codes/home-automation",
"version": "0.0.1",
"repository": "[email protected]:andrew-codes/home-automation.git",
"author": "Andrew Smith <[email protected]>",
"license": "MIT",
"engines": {
"node": "^20.15.0",
"yarn": "4.5.1"
},
"scripts": {
"clean": "nx run-many --target=clean --parallel --projects",
"clean/all": "nx run-many --target=clean --parallel --all",
"clean/cache": "nx clear-cache",
"clean/node_modules": "rm -rf node_modules **/node_modules",
"compile": "nx run-many --target=compile --parallel --projects",
"compile/all": "nx run-many --target=compile --parallel --all",
"manual-deploy": "nx run manual-deployment:deploy --skip-nx-cache --target-projects",
"deploy/all": "nx run-many --target=deploy --parallel --all",
"initialize-secrets": "nx run-many --target=initialize-secrets --parallel --all",
"provision": "nx run-many --target=provision --projects",
"start": "nx run-many --target=serve --parallel --verbose --projects",
"start/dev": "nx run-many --target=start/dev --parallel --projects",
"prestop": "./scripts/bin/stop.sh",
"stop": "nx run-many --target=stop --parallel --all",
"image/local": "./scripts/bin/build-local-images.sh",
"image/push": "nx run-many --target=image/push --parallel --projects",
"test": "nx run-many --target=test --parallel --projects",
"test/affected": "nx affected --target=test --parallel",
"test/all": "nx run-many --target=test --parallel --all",
"test/coverage/combine": "rm -rf .test-runs/unit && mkdir -p .test-runs/unit && find . -name \"coverage-final.json\" | xargs yarn istanbul-merge --out .test-runs/unit/coverage.json",
"pretest/coverage/report": "yarn test/coverage/combine",
"seal-github-secret": "node packages/github-secrets/dist/seal.js",
"test/coverage/report": "istanbul report --include .test-runs/unit/coverage.json --dir .test-runs/unit/report html",
"test/coverage/affected": "nx affected --target=code-coverage --parallel=1",
"test/coverage/all": "nx run-many --target=code-coverage --all --parallel=1"
},
"workspaces": {
"packages": [
"apps/*",
"packages/**/*"
]
},
"devDependencies": {
"@apollo/rover": "^0.10.0",
"@ha/configure-jest": "workspace:^0.0.1",
"@ha/nx-executors": "workspace:^0.1.0",
"@nrwl/workspace": "^15.5.2",
"@nx-dotnet/core": "^1.18.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"istanbul": "^0.4.5",
"istanbul-merge": "^1.1.1",
"jest": "^29.3.1",
"jest-when": "^3.5.2",
"nx": "15.5.2",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
}
}