package.json 2.73 KB
Newer Older
Rron Jahja's avatar
Rron Jahja committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "name": "hello",
  "version": "0.0.1",
  "author": "Ionic Framework",
  "homepage": "https://ionicframework.com/",
  "scripts": {
    "ng": "ng",
    "start": "ng serve",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/common": "~8.1.2",
    "@angular/core": "~8.1.2",
    "@angular/forms": "~8.1.2",
    "@angular/platform-browser": "~8.1.2",
    "@angular/platform-browser-dynamic": "~8.1.2",
    "@angular/router": "~8.1.2",
    "@ionic-native/core": "^5.0.0",
Rron Jahja's avatar
Rron Jahja committed
23
    "@ionic-native/geolocation": "^5.17.0",
24
    "@ionic-native/native-geocoder": "^5.17.1",
Rron Jahja's avatar
Rron Jahja committed
25
26
27
    "@ionic-native/splash-screen": "^5.0.0",
    "@ionic-native/status-bar": "^5.0.0",
    "@ionic/angular": "^4.7.1",
28
    "@ionic/storage": "^2.2.0",
Rron Jahja's avatar
Rron Jahja committed
29
    "cordova-android": "8.1.0",
30
    "cordova-browser": "^6.0.0",
Rron Jahja's avatar
Rron Jahja committed
31
    "cordova-plugin-geolocation": "^4.0.2",
32
    "cordova-plugin-nativegeocoder": "^3.2.2",
33
    "cordova-sqlite-storage": "^3.4.0",
Rron Jahja's avatar
Rron Jahja committed
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
    "core-js": "^2.5.4",
    "rxjs": "~6.5.1",
    "tslib": "^1.9.0",
    "zone.js": "~0.9.1"
  },
  "devDependencies": {
    "@angular-devkit/architect": "~0.801.2",
    "@angular-devkit/build-angular": "~0.801.2",
    "@angular-devkit/core": "~8.1.2",
    "@angular-devkit/schematics": "~8.1.2",
    "@angular/cli": "~8.1.2",
    "@angular/compiler": "~8.1.2",
    "@angular/compiler-cli": "~8.1.2",
    "@angular/language-service": "~8.1.2",
    "@ionic/angular-toolkit": "^2.1.1",
    "@types/jasmine": "~3.3.8",
    "@types/jasminewd2": "~2.0.3",
    "@types/node": "~8.9.4",
    "codelyzer": "^5.0.0",
Rron Jahja's avatar
Rron Jahja committed
53
54
55
56
57
58
    "cordova-plugin-device": "^2.0.2",
    "cordova-plugin-ionic-keyboard": "^2.2.0",
    "cordova-plugin-ionic-webview": "^4.1.3",
    "cordova-plugin-splashscreen": "^5.0.2",
    "cordova-plugin-statusbar": "^2.4.2",
    "cordova-plugin-whitelist": "^1.3.3",
Rron Jahja's avatar
Rron Jahja committed
59
60
61
62
63
64
65
66
67
68
69
70
    "jasmine-core": "~3.4.0",
    "jasmine-spec-reporter": "~4.2.1",
    "karma": "~4.1.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-coverage-istanbul-reporter": "~2.0.1",
    "karma-jasmine": "~2.0.1",
    "karma-jasmine-html-reporter": "^1.4.0",
    "protractor": "~5.4.0",
    "ts-node": "~7.0.0",
    "tslint": "~5.15.0",
    "typescript": "~3.4.3"
  },
Rron Jahja's avatar
Rron Jahja committed
71
72
73
74
75
76
77
78
79
80
81
  "description": "An Ionic project",
  "cordova": {
    "plugins": {
      "cordova-plugin-whitelist": {},
      "cordova-plugin-statusbar": {},
      "cordova-plugin-device": {},
      "cordova-plugin-splashscreen": {},
      "cordova-plugin-ionic-webview": {
        "ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
      },
      "cordova-plugin-ionic-keyboard": {},
82
      "cordova-plugin-geolocation": {},
83
84
      "cordova-sqlite-storage": {},
      "cordova-plugin-nativegeocoder": {}
Rron Jahja's avatar
Rron Jahja committed
85
86
    },
    "platforms": [
87
88
      "android",
      "browser"
Rron Jahja's avatar
Rron Jahja committed
89
90
    ]
  }
Priyanka Upadhye's avatar
Priyanka Upadhye committed
91
}