forked from wordpress-clients/hybrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.39 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
{
"name": "wordpress-hybrid-client",
"version": "2.0.0-beta09",
"title": "wordpress-hybrid-client",
"description": "AngularJS client using Ionic Framework and based on the json-rest-api plugin: https://wordpress.org/plugins/json-rest-api/ with CORS enabled.",
"main": "index.js",
"scripts": {
"build": "bash ./release.sh",
"restore": "ionic state restore",
"installWPHC": "cd scripts && node ./install.js",
"increaseVersion": "cd scripts && node ./increaseVersion.js",
"devserver": "webpack-dev-server --port 8080 --json --progress",
"dumpdev": "rm -rf www/* && webpack --progress --colors -d",
"dumpprod": "rm -rf www/* && webpack --progress --colors --config webpack.config.prod.js -p",
"android": "npm run dumpdev && cordova run android",
"iosEmulator": "npm run dumpdev && cordova run ios",
"ios": "npm run dumpdev && cordova run ios --device",
"cordova": "cordova",
"buildAndroid": "BUILD_MULTIPLE_APKS=true cordova build android --device",
"buildProdAndroid": "BUILD_MULTIPLE_APKS=true cordova build android --device --release",
"buildIOS": "cordova build ios --device",
"buildProdIOS": "cordova build ios --device --release"
},
"keywords": [
"wp-api",
"angular",
"angularjs",
"rest",
"restfull",
"hybrid",
"material design",
"client"
],
"author": "Julien Renaux <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/shprink/wordpress-hybrid-client"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shprink/wordpress-hybrid-client/issues"
},
"homepage": "https://github.com/shprink/wordpress-hybrid-client",
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel": "^5.8.23",
"babel-core": "^5.0.0",
"babel-loader": "^5.3.2",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"commander": "^2.9.0",
"ionic": "~1.7.12",
"cordova": "~5.4.1",
"cson": "^3.0.2",
"cson-loader": "^0.1.0",
"css-loader": "^0.18.0",
"deep-extend": "^0.4.0",
"exports-loader": "^0.6.2",
"expose-loader": "^0.7.0",
"file-loader": "^0.8.4",
"fs-extra": "^0.26.3",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^1.6.1",
"imports-loader": "^0.6.4",
"json-loader": "^0.5.3",
"ng-annotate-loader": "~0.0.10",
"node-sass": "^3.3.3",
"path": "^0.12.7",
"sass-loader": "^2.0.1",
"semver": "^5.0.3",
"style-loader": "^0.12.4",
"util": "^0.10.3",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.12.0"
},
"dependencies": {
"MD5": "^1.2.1",
"angular": "^1.4.7",
"angular-cache": "^4.0.0",
"angular-highlightjs": "^0.4.1",
"angular-moment": "^0.10.0",
"angular-recursion": "^1.0.5",
"angular-translate": "^2.5.2",
"highlight.js": "^8.9.0",
"imagesloaded": "^3.1.8",
"imgcache.js": "^1.0.0",
"ionic-native-transitions": "v1.0.0-rc5",
"ionic-sdk": "~1.2.0",
"lodash": "^3.9.3",
"moment": "^2.9.0",
"ng-cordova": "^0.1.23-alpha",
"v-accordion": "~1.3.1",
"wp-api-angularjs": "^2.0.0-rc3"
},
"cordovaPlugins": [
{
"locator": "https://github.com/pushandplay/cordova-plugin-apprate#v1.1.7",
"id": "org.pushandplay.cordova.apprate"
},
{
"locator" : "https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin#4.3.19",
"id": "nl.x-services.plugins.socialsharing"
},
{
"locator": "https://github.com/driftyco/ionic-plugin-keyboard#v1.0.4",
"id": "[email protected]"
},
{
"locator": "https://github.com/Telerik-Verified-Plugins/NativePageTransitions#0.5.5",
"id": "com.telerik.plugins.nativepagetransitions"
},
],
"cordovaPlatforms": [
"android",
"ios"
]
}