forked from wordpress-clients/hybrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 4.22 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
{
"name": "wordpress-hybrid-client",
"version": "2.0.0-alpha2",
"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",
"installWPHC": "cd scripts && node ./install.js",
"installCordova": "bash ./install_cordova.sh",
"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",
"runAndroid": "npm run dumpdev && cordova run android",
"runIOS": "cordova run ios",
"runIosEmulator": "npm run dumpdev && cordova run ios",
"runIosDevice": "npm run dumpdev && cordova run ios --device",
"cordova": "cordova",
"buildAndroid": "cordova build android --device",
"buildProdAndroid": "cordova build android --device --release",
"buildIOS": "cordova build ios --device",
"buildProdIOS": "cordova build ios --device --release",
"buildAll": "cordova build android ios --device",
"buildProdAll": "cordova build android ios --device --release",
"pluginAddAll": "cordova plugin add [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] [email protected] https://github.com/phonegap-build/PushPlugin.git#2.5.0 [email protected] https://github.com/Telerik-Verified-Plugins/NativePageTransitions#0.5.4",
"platformAddAndroid": "cordova platform add android",
"platformAddIOS": "cordova platform add ios",
"platformAddAll": "cordova platform add android ios",
"ionicBuild": "cordova build --device --release",
"emulateIOS": "cordova emulate ios",
"rmPlugin": "cordova plugin rm",
"listPlugin": "cordova plugin list"
},
"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-loader": "^5.3.2",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.10.0",
"cordova": "~5.3.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",
"gulp": "^3.9.0",
"gulp-util": "^3.0.6",
"html-loader": "^0.3.0",
"html-webpack-plugin": "^1.6.1",
"imports-loader": "^0.6.4",
"json-loader": "^0.5.3",
"markdown-loader": "^0.1.7",
"ng-annotate-loader": "~0.0.10",
"node-gcm": "^0.12.0",
"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-rc1",
"ionic-sdk": "^1.1.0",
"lodash": "^3.9.3",
"moment": "^2.9.0",
"ng-cordova": "^0.1.20-alpha",
"v-accordion": "~1.3.1",
"wp-api-angularjs": "^2.0.0-rc2"
}
}