forked from orchestratora/orchestrator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.16 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
126
127
128
129
{
"name": "orchestrator",
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orchestratora/orchestrator.git"
},
"scripts": {
"ct": "git-cz",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test:watch": "ng test --watch",
"lint": "./node_modules/.bin/nx lint && ng lint",
"e2e": "ng e2e",
"ci": "npm-run-all -p lint test",
"affected:apps": "./node_modules/.bin/nx affected:apps",
"affected:libs": "./node_modules/.bin/nx affected:libs",
"affected:build": "./node_modules/.bin/nx affected:build",
"affected:e2e": "./node_modules/.bin/nx affected:e2e",
"affected:test": "./node_modules/.bin/nx affected:test",
"affected:lint": "./node_modules/.bin/nx affected:lint",
"affected:dep-graph": "./node_modules/.bin/nx affected:dep-graph",
"format": "./node_modules/.bin/nx format:write",
"format:write": "./node_modules/.bin/nx format:write",
"format:check": "./node_modules/.bin/nx format:check",
"update": "ng update @nrwl/schematics",
"update:check": "ng update",
"workspace-schematic": "./node_modules/.bin/nx workspace-schematic",
"dep-graph": "./node_modules/.bin/nx dep-graph",
"help": "./node_modules/.bin/nx help",
"prebuild-libs": "rimraf dist",
"build-libs": "npm-run-all -p build:*",
"build:core": "ng-packagr -p libs/core/package.json",
"release-ci": "npm-run-all -s build-libs release",
"release": "npm-run-all -s release:*",
"postrelease": "node -e \"require('semantic-release-monorepo-hooks').hookAfterAll()\"",
"_prerelease:core": "ncp .git dist/@orchestrator/core",
"release:core": "cd dist/@orchestrator/core && npx semantic-release -e \"@orchestrator/semantic-release-monorepo\" --fixedMode true"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.1.0",
"@angular/common": "^6.1.0",
"@angular/compiler": "^6.1.0",
"@angular/core": "^6.1.0",
"@angular/forms": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"@ngrx/effects": "6.1.0",
"@ngrx/router-store": "6.1.0",
"@ngrx/store": "6.1.0",
"@nrwl/nx": "6.4.0",
"core-js": "^2.5.4",
"ng-dynamic-component": "^3.1.2",
"rxjs": "^6.0.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-builders/jest": "^1.2.5",
"@angular-devkit/build-angular": "~0.8.0",
"@angular/cli": "6.2.4",
"@angular/compiler-cli": "^6.1.0",
"@angular/language-service": "^6.1.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@ngrx/store-devtools": "6.1.0",
"@nrwl/schematics": "6.4.0",
"@orchestrator/semantic-release-monorepo": "^6.2.3",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.0",
"@semantic-release/npm": "^5.0.5",
"@starptech/prettyhtml": "^0.2.2",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"ncp": "^2.0.0",
"ng-packagr": "^4.3.1",
"ngrx-store-freeze": "0.2.4",
"npm-run-all": "^4.1.3",
"prettier": "1.13.7",
"protractor": "~5.4.0",
"rimraf": "^2.6.2",
"semantic-release": "15.6.3",
"semantic-release-monorepo-hooks": "^2.6.1",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~2.9.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm-run-all -p lint test"
}
},
"lint-staged": {
"{libs,apps,tools}/**/*.{ts,js}": [
"tslint -p tsconfig.json -c tslint.json --fix",
"git add"
],
"{libs,apps,tools}/**/*.{ts,js,json,?css}": [
"prettier --write",
"git add"
],
"{libs,apps,tools}/**/*.html": [
"prettyhtml",
"git add"
]
}
}