-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.24 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": "ngx-animations-demo",
"version": "0.0.0",
"description": "",
"keywords": [
"animations",
"angular"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-animations --prod",
"test": "ng test ngx-animations --watch",
"test-ci": "ng test ngx-animations",
"codecov": "codecov -t $CODECOV_TOKEN",
"lint": "./node_modules/.bin/nx lint && ng lint",
"format:fix": "pretty-quick --staged",
"e2e": "ng e2e",
"remark": "remark .",
"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",
"affected": "./node_modules/.bin/nx affected"
},
"private": true,
"dependencies": {
"@angular-devkit/schematics": "^11.0.1",
"@angular/animations": "11.0.0",
"@angular/cdk": "^11.0.0",
"@angular/common": "11.0.0",
"@angular/compiler": "11.0.0",
"@angular/core": "11.0.0",
"@angular/forms": "11.0.0",
"@angular/platform-browser": "11.0.0",
"@angular/platform-browser-dynamic": "11.0.0",
"@angular/router": "11.0.0",
"@ngrx/effects": "10.0.1",
"@ngrx/router-store": "10.0.1",
"@ngrx/store": "10.0.1",
"@nrwl/nx": "7.8.7",
"rxjs": "^6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1100.1",
"@angular/cli": "11.0.1",
"@angular/compiler-cli": "11.0.0",
"@angular/language-service": "11.0.0",
"@ngrx/schematics": "10.0.1",
"@ngrx/store-devtools": "10.0.1",
"@nrwl/builders": "7.8.7",
"@nrwl/schematics": "8.12.11",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/jest": "^25.1.1",
"@types/node": "^12.11.1",
"codecov.io": "^0.1.6",
"codelyzer": "^6.0.0",
"core-js": "^2.5.4",
"jasmine-core": "~3.6.0",
"jasmine-marbles": "0.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jest": "^24.1.0",
"jest-preset-angular": "7.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^11.0.0",
"ngrx-store-freeze": "0.2.4",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"protractor": "~7.0.0",
"remark-cli": "^7.0.1",
"remark-lint": "^6.0.5",
"remark-preset-lint-recommended": "^3.0.3",
"ts-jest": "^24.0.0",
"ts-node": "^8.6.2",
"tslint": "~6.1.0",
"typescript": "~4.0.5"
}
}