-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.67 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
{
"name": "ionic-chat",
"version": "1.1.1",
"repository": "pengkobe/ionic-chat",
"author": "pengkobe",
"license": "MIT",
"description": "ionic-chat: An Ionic project",
"scripts": {
"serve:dev": "gulp serve:dev",
"serve:prod": "gulp serve:prod",
"build": "gulp build:dev",
"prod": "gulp build:prod",
"test:e2e": "gulp test:e2e",
"test:unit": "gulp test:unit"
},
"dependencies": {
"cordova-android": "^6.2.3",
"cordova-plugin-camera": "^2.2.0",
"cordova-plugin-file": "^4.2.0"
},
"devDependencies": {
"bower": "^1.3.3",
"browser-sync": "^2.18.5",
"del": "^1.1.1",
"gulp": "^3.5.6",
"gulp-angular-templatecache": "^2.0.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-bytediff": "^1.0.0",
"gulp-concat": "^2.2.0",
"gulp-csso": "^2.0.0",
"gulp-filter": "^4.0.0",
"gulp-flatten": "^0.3.1",
"gulp-header": "^1.8.8",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^3.1.1",
"gulp-inject": "^4.2.0",
"gulp-jade": "^1.1.0",
"gulp-load-plugins": "^1.4.0",
"gulp-minify-css": "^0.3.0",
"gulp-minify-html": "^1.0.6",
"gulp-ng-annotate": "^2.0.0",
"gulp-order": "^1.1.1",
"gulp-plumber": "^1.1.0",
"gulp-protractor": "^3.0.0",
"gulp-rename": "^1.2.0",
"gulp-rev": "^7.1.2",
"gulp-rev-replace": "^0.4.3",
"gulp-sass": "^2.0.4",
"gulp-sourcemaps": "^1.9.1",
"gulp-task-listing": "^1.0.1",
"gulp-uglify": "^2.0.0",
"gulp-useref": "^3.1.2",
"gulp-util": "^2.2.14",
"gulp-watch": "^4.3.11",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha-reporter": "^2.2.1",
"protractor": "^4.0.14",
"run-sequence": "^1.2.2",
"shelljs": "^0.3.0",
"wiredep": "^4.0.0",
"yargs": "^6.5.0"
},
"cordovaPlugins": [
"cordova-plugin-device",
"cordova-plugin-console",
"cordova-plugin-whitelist",
"cordova-plugin-splashscreen",
"cordova-plugin-statusbar",
"ionic-plugin-keyboard",
"NativePageTransitions-0.6.5",
"phonertc-master",
"cordova-plugin-contacts"
],
"cordovaPlatforms": [
"android"
],
"cordova": {
"plugins": {
"cordova-plugin-camera": {},
"cordova-plugin-file": {}
},
"platforms": [
"android"
]
}
}