-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.95 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "orchestrator",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orchestratora/orchestrator.git"
},
"scripts": {
"ct": "git-cz",
"ng": "nx",
"nx": "nx",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"workspace-schematic": "nx workspace-schematic",
"migrate": "nx migrate latest",
"migrate:run": "nx migrate --run-migrations",
"dep-graph": "nx dep-graph",
"clean": "run-s clean:*",
"clean:dist": "rimraf dist",
"clean:libs": "rimraf libs/*/dist",
"release": "lerna publish --yes --conventional-graduate --create-release github",
"release:tag": "lerna publish --yes --conventional-prerelease --dist-tag $RELEASE_TAG --preid $RELEASE_TAG",
"release:branch": "export RELEASE_TAG=\"$(node tools/scripts/get-release-tag.js \"$RELEASE_BRANCH\")\" && npm run release:tag",
"prepare": "husky install",
"postinstall": "node ./tools/scripts/decorate-angular-cli.js && ngcc --properties es2015 browser module main"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.1.0",
"@angular/cdk": "^13.1.0",
"@angular/common": "^13.1.0",
"@angular/compiler": "^13.1.0",
"@angular/core": "^13.1.0",
"@angular/forms": "^13.1.0",
"@angular/platform-browser": "^13.1.0",
"@angular/platform-browser-dynamic": "^13.1.0",
"@angular/router": "^13.1.0",
"@nrwl/nx-cloud": "^13.0.0",
"@orchestrator/gen-io-ts": "^3.0.1",
"core-js": "^3.6.4",
"fp-ts": "^2.5.4",
"io-ts": "^2.2.1",
"ng-dynamic-component": "^10.0.0-no-barrels.0",
"rxjs": "^6.5.5",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.1.1",
"@angular-eslint/eslint-plugin": "^13.0.1",
"@angular-eslint/eslint-plugin-template": "^13.0.1",
"@angular-eslint/template-parser": "^13.0.1",
"@angular/cli": "^13.1.1",
"@angular/compiler-cli": "^13.1.0",
"@angular/language-service": "^13.1.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@nrwl/angular": "^13.3.1",
"@nrwl/cypress": "^13.3.1",
"@nrwl/eslint-plugin-nx": "^13.3.1",
"@nrwl/jest": "^13.3.1",
"@nrwl/linter": "^13.3.1",
"@nrwl/workspace": "^13.3.1",
"@types/copyfiles": "^2.4.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"commitizen": "^4.2.4",
"copyfiles": "^2.4.1",
"cypress": "^8.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"fast-glob": "^3.2.7",
"husky": "^7.0.4",
"jasmine-marbles": "^0.8.4",
"jest": "^27.4.4",
"jest-preset-angular": "^11.0.1",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"ng-packagr": "^13.1.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"postcss-import": "^14.0.2",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"ts-node": "^8.6.2",
"tsickle": "^0.38.1",
"typescript": "~4.4.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{ts,js,json,html,?css}": [
"npm run format -- --files"
]
}
}