-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·72 lines (72 loc) · 2.29 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
{
"name": "starter-ionic-app",
"version": "1.0.0",
"description": "Ionic mono-repo root package.json, used mainly to execute build scripts. This package is not published to npm.",
"license": "MIT",
"scripts": {
"start": "ionic serve",
"build": "gulp clean && gulp build --release",
"build:android": "gulp clean && gulp build --release && ionic cordova build android --release",
"build:ios": "gulp clean && gulp build --release && ionic cordova build ios --release"
},
"dependencies": {
"cordova-android": "7.1.4",
"cordova-ios": "4.5.5",
"cordova-plugin-device": "^2.0.2",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^3.1.2",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-window-background": "^1.1.0"
},
"devDependencies": {
"@bower_components/ionic": "github:douglaszaltron/ionic-bower",
"@ionic/lab": "^1.0.20",
"@ionic/v1-toolkit": "1.0.18",
"del": "^3.0.0",
"eslint": "^5.13.0",
"eslint-config-angular": "^0.5.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-angular": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "^2.2.6",
"gulp-autoprefixer": "^6.0.0",
"gulp-concat": "^2.6.1",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^2.0.2",
"gulp-ng-annotate": "^2.1.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"ionic-bower": "github:douglaszaltron/ionic-bower",
"path": "^0.12.7",
"prettier": "^1.16.2",
"semver": "^5.6.0",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^4.0.0",
"stylelint-prettier": "^1.0.6",
"xml2js": "^0.4.19",
"yargs": "^12.0.5"
},
"cordova": {
"platforms": [
"android",
"ios"
],
"plugins": {
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
},
"cordova-plugin-statusbar": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-window-background": {
"WINDOW_BACKGROUND_COLOR": "#2684FF"
}
}
}
}