-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.76 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
{
"name": "@zima/ngrx-rxui",
"version": "0.1.3",
"description": "Reactive data components wrappers (master/detail, datatable, lookup-select, etc.) for Angular 6+ and Ngrx.",
"scripts": {
"ng": "ng",
"build": "ng-packagr -p package.json",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinzima/ngrx-rxui.git"
},
"keywords": [
"ngrx",
"angular",
"reactive",
"rx",
"ui",
"datatable",
"lookup"
],
"author": "Martin Zima",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinzima/ngrx-rxui/issues"
},
"homepage": "https://github.com/martinzima/ngrx-rxui#readme",
"peerDependencies": {
"@angular/animations": "^6.1.0",
"@angular/cdk": "^6.4.5",
"@angular/core": "^6.1.0",
"@angular/common": "^6.1.0",
"@angular/flex-layout": "^6.0.0-beta.17",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/platform-browser": "^6.1.0",
"@angular/platform-browser-dynamic": "^6.1.0",
"@angular/router": "^6.1.0",
"@nebular/theme": "^2.0.0-rc.10",
"@ng-select/ng-select": "^2.4.2",
"@ngrx/effects": "^6.1.0",
"@ngrx/store": "^6.1.0",
"@ngrx/router-store": "^6.1.0",
"@swimlane/ngx-datatable": "^13.1.0",
"@zima/ngrx-state-utils": "^0.1.0",
"ng2-rx-componentdestroyed": "^3.0.0",
"ngrx-forms": "^3.0.2",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/animations": "6.1.2",
"@angular/cdk": "^6.4.5",
"@angular/common": "^6.1.0",
"@angular/compiler": "6.1.2",
"@angular/compiler-cli": "6.1.2",
"@angular/core": "^6.1.0",
"@angular/flex-layout": "^6.0.0-beta.17",
"@angular/forms": "^6.1.0",
"@angular/http": "^6.1.0",
"@angular/language-service": "6.1.2",
"@angular/platform-browser": "6.1.2",
"@angular/platform-browser-dynamic": "6.1.2",
"@angular/router": "^6.1.0",
"@nebular/theme": "^2.0.0-rc.10",
"@ng-select/ng-select": "^2.4.2",
"@ngrx/effects": "^6.1.0",
"@ngrx/router-store": "^6.1.0",
"@ngrx/store": "^6.1.0",
"@swimlane/ngx-datatable": "^13.1.0",
"@types/jasmine": "^2.8.0",
"@zima/ngrx-state-utils": "^0.1.0",
"husky": "^0.14.3",
"jasmine": "^2.8.0",
"lint-staged": "^6.0.0",
"ng-packagr": "^3.0.3",
"ng2-rx-componentdestroyed": "^3.0.0",
"ngrx-forms": "^3.0.2",
"prettier": "^1.9.2",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.1.0",
"tsickle": "^0.26.0",
"tslint": "^5.8.0",
"typescript": "~2.9.2",
"zone.js": "^0.8.4"
},
"ngPackage": {
"lib": {
"entryFile": "src/public_api.ts"
}
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"git add"
]
}
}