-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 3.44 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
{
"name": "valueadd",
"version": "2.7.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:all": "npm run affected:build -- --all",
"test": "ng test",
"lint": "./node_modules/.bin/nx lint && ng lint",
"e2e": "ng e2e",
"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",
"affected": "./node_modules/.bin/nx affected",
"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/workspace",
"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",
"publish:latest": "node scripts/tasks/publish.js",
"release:prepare": "git checkout master && git pull --tags origin master && ./node_modules/.bin/standard-version && npm run build:all",
"release:push": "git push --follow-tags origin master --no-verify",
"validate": "node ./scripts/tasks/validate-commit-message.js"
},
"private": true,
"dependencies": {
"@angular-devkit/core": "^7.3.8",
"@angular-devkit/schematics": "^7.3.8",
"@angular/animations": "^8.2.0",
"@angular/cdk": "^8.1.2",
"@angular/common": "^8.2.0",
"@angular/compiler": "^8.2.0",
"@angular/core": "^8.2.0",
"@angular/forms": "^8.2.0",
"@angular/material": "^8.1.2",
"@angular/platform-browser": "^8.2.0",
"@angular/platform-browser-dynamic": "^8.2.0",
"@angular/router": "^8.2.0",
"@nrwl/angular": "^8.4.4",
"@schematics/angular": "^7.3.8",
"core-js": "^2.6.9",
"glob": "^7.1.6",
"lodash": "^4.17.15",
"rxjs": "^6.5.2",
"ts-morph": "^4.0.1",
"zone.js": "~0.10.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.802.0",
"@angular-devkit/build-ng-packagr": "~0.802.0",
"@angular/cli": "^8.2.0",
"@angular/compiler-cli": "^8.2.0",
"@nrwl/jest": "8.11.2",
"@nrwl/node": "^8.4.4",
"@nrwl/workspace": "8.4.4",
"@types/glob": "^7.1.1",
"@types/jasmine": "~3.3.16",
"@types/jasminewd2": "~2.0.6",
"@types/jest": "24.0.9",
"@types/node": "~12.7.0",
"@valueadd/ng-packagr-schematics": "0.0.0-rc1",
"codelyzer": "^5.1.0",
"dotenv": "^8.0.0",
"husky": "^3.0.2",
"jasmine-core": "~3.4.0",
"jasmine-marbles": "~0.6.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "24.1.0",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.0.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"lint-staged": "^9.2.1",
"ng-packagr": "^5.4.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"shelljs": "^0.8.3",
"standard-version": "^7.0.0",
"ts-jest": "24.0.0",
"ts-node": "~8.3.0",
"tsickle": ">=0.36.0",
"tslib": "^1.10.0",
"tslint": "~5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-sonarts": "^1.9.0",
"typescript": "~3.5.3"
}
}