-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
114 lines (114 loc) · 3.34 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
{
"name": "convoyr",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"nx": "nx",
"start": "run-p start:*",
"start:app": "ng serve --hmr",
"start:api": "ng serve sandbox-api",
"build": "ng build",
"test": "ng test",
"test:all": "yarn affected:test --all --parallel --maxParallel 100 --watch",
"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",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"limbo": "tools/limbo.sh",
"tcr": "yarn affected:test --uncommitted && git recommit || git reset --hard",
"merge-into-master": "tools/merge-into-master.sh",
"publish:libs": "lerna publish --dist-tag latest --yes",
"update": "ng update @nrwl/workspace",
"update:check": "ng update",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"contributors:add": "all-contributors add"
},
"private": true,
"dependencies": {
"@angular/animations": "^11.0.1",
"@angular/cdk": "^11.0.0",
"@angular/common": "^11.0.1",
"@angular/compiler": "^11.0.1",
"@angular/core": "^11.0.1",
"@angular/flex-layout": "^9.0.0-beta.31",
"@angular/forms": "^11.0.1",
"@angular/material": "^11.0.0",
"@angular/platform-browser": "^11.0.1",
"@angular/platform-browser-dynamic": "^11.0.1",
"@angular/router": "^11.0.1",
"@nrwl/angular": "^11.0.0",
"body-parser": "^1.19.0",
"core-js": "^3.6.4",
"cors": "^2.8.5",
"express": "4.20.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.0",
"@angular/cli": "11.2.15",
"@angular/compiler-cli": "^11.0.1",
"@angular/language-service": "^11.0.1",
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@hirez_io/observer-spy": "^2.0.0",
"@nrwl/cypress": "11.3.1",
"@nrwl/express": "^11.0.0",
"@nrwl/jest": "11.3.1",
"@nrwl/node": "11.3.1",
"@nrwl/workspace": "11.3.1",
"@types/express": "4.17.13",
"@types/jest": "27.0.3",
"@types/lru-cache": "^5.1.0",
"@types/node": "^16.0.0",
"all-contributors-cli": "^6.12.0",
"codelyzer": "^6.0.0",
"cypress": "6.9.1",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"husky": "^6.0.0",
"jest": "27.4.3",
"jest-date-mock": "^1.0.8",
"jest-preset-angular": "8.4.0",
"lerna": "^4.0.0",
"lint-staged": "11.1.2",
"ng-packagr": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"rxjs-marbles": "^7.0.0",
"ts-jest": "27.1.5",
"ts-node": "~9.1.0",
"tsickle": "^0.43.0",
"tslint": "~6.1.0",
"typescript": "~4.1.0"
},
"workspaces": [
"libs/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint --fix"
]
}
}