-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
169 lines (169 loc) · 6.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "biopocket",
"version": "1.0.0",
"author": "Ionic Framework",
"homepage": "http://ionicframework.com/",
"private": true,
"config": {
"ionic_optimization": "config/optimization.config.js",
"ionic_webpack": "config/webpack.config.js",
"ionic_copy": "config/copy.config.js"
},
"scripts": {
"apksigner": "apksigner sign --ks /c/Android/android-release-keystore.jks --out biopocket-release.apk biopocket-unsigned-aligned.apk",
"apr": "ionic cordova build android --prod --release",
"clean": "ionic-app-scripts clean",
"build": "npm run build:assets && ionic-app-scripts build",
"build:assets": "concurrently \"npm run locales\" \"npm run svg-sprite\"",
"doctoc": "doctoc --notitle --github README.md DEVELOPMENT.md",
"ionic:build": "npm run build:assets && cross-env IONIC_ENV=prod ionic-app-scripts build",
"ionic:serve": "npm run build:assets && ionic-app-scripts serve",
"ionic:lab": "npm run build:assets && ionic-app-scripts serve --lab",
"ipr": "ionic cordova build ios --prod -- --buildFlag=\"-UseModernBuildSystem=0\"",
"lint": "tslint -c tslint.json -p tsconfig.json -t stylish",
"locales": "node lib/locales-to-typescript.js",
"locales:start": "npm run locales && npm run locales:watch",
"locales:watch": "onchange \"src/locales/**/*.yml\" -- npm run locales",
"start": "npm run build:assets && concurrently \"npm run ionic:serve\" \"npm run locales:watch\" \"npm run svg-sprite:watch\"",
"start:lab": "npm run build:assets && concurrently \"npm run ionic:lab\" \"npm run locales:watch\" \"npm run svg-sprite:watch\"",
"start:e2e": "cross-env IONIC_ENV=test NODE_ENV=test ionic --no-interactive serve --no-open",
"svg-sprite": "node lib/svg-to-sprite.js",
"svg-sprite:start": "npm run svg-sprite && npm run svg-sprite:watch",
"svg-sprite:watch": "onchange \"src/assets/icon/svg/*.svg\" -- npm run svg-sprite",
"test": "npm run test:unit && npm run test:e2e",
"test:coverage": "cat coverage/lcov.info | coveralls",
"test:e2e": "npm run test:e2e:update && npm run test:e2e:run",
"test:e2e:fast": "cross-env IONIC_E2E_STANDALONE=0 npm run test:e2e:run",
"test:e2e:fast:watch": "cross-env IONIC_E2E_STANDALONE=0 npm run test:e2e:watch",
"test:e2e:run": "cross-env IONIC_ENV=test NODE_ENV=test SESSION_SECRET=secret protractor ./spec/protractor.conf.js",
"test:e2e:update": "webdriver-manager update --standalone false --gecko false",
"test:e2e:watch": "npm run test:e2e:update && onchange \"src/**/*.ts\" \"e2e/**/*.ts\" -e \"src/**/*.spec.ts\" -- npm run test:e2e:run",
"test:unit": "npm run svg-sprite && cross-env NODE_ENV=test karma start ./spec/karma.conf.js --single-run",
"test:unit:watch": "npm run svg-sprite && cross-env NODE_ENV=test karma start ./spec/karma.conf.js",
"test:watch": "concurrently \"npm run test:unit:watch\" \"npm run test:e2e:watch\"",
"zipalign": "zipalign -v -p 4 app-release-unsigned.apk biopocket-unsigned-aligned.apk"
},
"dependencies": {
"@angular/common": "^5.2.1",
"@angular/compiler": "^5.2.1",
"@angular/compiler-cli": "^5.2.1",
"@angular/core": "^5.2.1",
"@angular/forms": "^5.2.1",
"@angular/http": "^5.2.1",
"@angular/platform-browser": "^5.2.1",
"@angular/platform-browser-dynamic": "^5.2.1",
"@asymmetrik/ngx-leaflet": "^3.0.2",
"@ionic-native/clipboard": "^4.15.0",
"@ionic-native/core": "^4.5.2",
"@ionic-native/geolocation": "^4.5.2",
"@ionic-native/globalization": "^4.15.0",
"@ionic-native/in-app-browser": "^4.15.0",
"@ionic-native/splash-screen": "^4.5.2",
"@ionic-native/status-bar": "^4.5.2",
"@ionic-native/toast": "^4.15.0",
"@ionic-native/youtube-video-player": "^4.15.0",
"@ionic/storage": "^2.1.3",
"@ngx-translate/core": "^9.1.1",
"@turf/turf": "^5.1.6",
"angular2-moment": "^1.7.1",
"cordova-android": "7.1.1",
"cordova-clipboard": "^1.2.1",
"cordova-ios": "4.5.5",
"cordova-plugin-device": "^2.0.1",
"cordova-plugin-geolocation": "^4.0.1",
"cordova-plugin-globalization": "^1.11.0",
"cordova-plugin-inappbrowser": "^3.0.0",
"cordova-plugin-ionic-webview": "^1.1.16",
"cordova-plugin-splashscreen": "^5.0.1",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.1",
"cordova-plugin-x-toast": "^2.7.0",
"cordova-plugin-youtube-video-player": "^2.0.0",
"ionic-angular": "^3.9.2",
"ionic-plugin-keyboard": "^2.2.1",
"ionicons": "^3.0.0",
"leaflet": "^1.3.1",
"lodash": "^4.17.10",
"messageformat": "^1.1.1",
"ngx-markdown": "^6.2.1",
"rxjs": "^5.5.6",
"sw-toolbox": "^3.6.0",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@ionic/app-scripts": "^3.1.8",
"@types/chai": "^4.1.1",
"@types/chai-as-promised": "7.1.0",
"@types/leaflet": "^1.2.5",
"@types/mocha": "^2.2.46",
"@types/sinon": "^4.1.3",
"@types/sinon-chai": "^2.7.29",
"angular2-template-loader": "^0.6.2",
"bluebird": "^3.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chalk": "^2.1.0",
"concurrently": "^3.5.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"doctoc": "^1.3.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"handlebars": "^4.0.10",
"html-loader": "^0.5.5",
"istanbul-instrumenter-loader": "^3.0.0",
"js-yaml": "^3.9.1",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^1.3.3",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "~0.0.32",
"karma-webpack": "^2.0.4",
"mocha": "^5.0.0",
"null-loader": "^0.1.1",
"onchange": "^3.2.1",
"postcss": "6.0.14",
"protractor": "^5.4.0",
"r2": "^2.0.0",
"sinon": "^4.1.6",
"sinon-chai": "^2.14.0",
"svgstore": "^2.0.3",
"ts-loader": "^3.2.0",
"ts-node": "^4.1.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-misc-rules": "^3.5.1",
"typescript": "^2.4.2"
},
"engines": {
"node": ">= 8"
},
"description": "An Ionic project",
"false": {},
"cordova": {
"plugins": {
"ionic-plugin-keyboard": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-ionic-webview": {},
"cordova-plugin-geolocation": {
"GEOLOCATION_USAGE_DESCRIPTION": "To locate you"
},
"cordova-plugin-x-toast": {},
"cordova-plugin-statusbar": {},
"cordova-clipboard": {},
"cordova-plugin-globalization": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-youtube-video-player": {}
},
"platforms": [
"android",
"ios"
]
}
}