-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.35 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
{
"name": "friendlib-app",
"version": "0.0.1",
"author": "carlo-mr",
"homepage": "http://friendlib.de/",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/carlo-mr/friendlib-app"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"test-ci": "ng test --ci --reporters=jest-junit --reporters=default",
"pact": "ng run app:pact --runInBand",
"lint": "ng lint",
"e2e": "ng e2e",
"test:watch": "ng test --watch"
},
"private": true,
"dependencies": {
"@angular/common": "~7.2.14",
"@angular/core": "~7.2.14",
"@angular/forms": "~7.2.14",
"@angular/http": "~7.2.14",
"@angular/platform-browser": "~7.2.14",
"@angular/platform-browser-dynamic": "~7.2.14",
"@angular/router": "~7.2.14",
"@ionic-native/barcode-scanner": "^5.5.1",
"@ionic-native/core": "~5.5.1",
"@ionic-native/push": "^5.10.0",
"@ionic-native/splash-screen": "~5.5.1",
"@ionic-native/status-bar": "~5.5.1",
"@ionic/angular": "^4.3.1",
"@ngrx/effects": "~7.4.0",
"@ngrx/entity": "~7.4.0",
"@ngrx/router-store": "~7.4.0",
"@ngrx/store": "~7.4.0",
"@ngrx/store-devtools": "~7.4.0",
"amazon-cognito-identity-js": "^3.0.11",
"aws-sdk": "^2.348.0",
"cordova-browser": "5.0.4",
"cordova-ios": "4.5.5",
"cordova-plugin-build-increment": "^2.0.1",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^4.0.1",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"core-js": "^2.5.3",
"normalizr": "^3.4.0",
"phonegap-plugin-barcodescanner": "^8.0.1",
"phonegap-plugin-push": "^2.2.3",
"rxjs": "~6.5.1",
"xml2js": "^0.4.19",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-builders/jest": "^7.4.2",
"@angular-devkit/architect": "^0.13.8",
"@angular-devkit/build-angular": "^0.13.8",
"@angular-devkit/core": "^7.3.8",
"@angular-devkit/schematics": "^7.3.8",
"@angular/cli": "~7.3.8",
"@angular/compiler": "~7.2.14",
"@angular/compiler-cli": "~7.2.14",
"@angular/language-service": "~7.2.14",
"@ionic/angular-toolkit": "^1.0.0",
"@ngrx/schematics": "^7.4.0",
"@pact-foundation/pact": "^8.0.5",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^24.0.11",
"@types/node": "~10.12.0",
"acorn": "^6.0.5",
"ajv": "^6.6.1",
"codelyzer": "~4.5.0",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "^0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^24.7.1",
"jest-junit": "^6.3.0",
"jest-preset-angular": "^7.1.0",
"protractor": "~5.4.0",
"ts-jest": "^24.0.2",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.2.4"
},
"description": "An Ionic project",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-build-increment": {},
"phonegap-plugin-barcodescanner": {},
"phonegap-plugin-push": {}
},
"platforms": [
"browser",
"ios"
]
}
}