-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.57 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
{
"name": "onsenui-vue-cordova-test2",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "Dzulfikar Adi Putra <dzulfikar.adiputra@gmail.com>",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"start": "npm run dev",
"build": "node build/build.js",
"build:watch": "cross-env WEBPACK_WATCH=true node build/build.js",
"lint": "eslint --ext .js,.vue src",
"cordova-build": "npm run build && cordova build",
"cordova-run": "npm run build && cordova run browser",
"cordova-run-ios": "npm run build && cordova run ios",
"cordova-run-android": "npm run build && cordova run android",
"release-code-push": "code-push release-cordova onsenui-vue-cordova-test2 android"
},
"dependencies": {
"axios": "^0.17.1",
"code-push": "^2.0.1-beta",
"cordova-android": "^6.3.0",
"cordova-plugin-ble-central": "^1.1.4",
"cordova-plugin-camera": "^3.0.0",
"cordova-plugin-code-push": "^1.10.0-beta",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-contacts": "^3.0.0",
"cordova-plugin-device": "^1.1.7",
"cordova-plugin-dialogs": "^1.3.4",
"cordova-plugin-file": "^5.0.0",
"cordova-plugin-file-transfer": "^1.7.0",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-x-socialsharing": "^5.2.1",
"cordova-plugin-zip": "^3.1.0",
"cordova-sms-plugin": "^0.1.11",
"date-fns": "^1.29.0",
"es6-promise-plugin": "^4.1.0",
"he": "^1.1.1",
"onsenui": "~2.7.2",
"randomcolor": "^0.5.3",
"sanitize-html": "^1.15.0",
"vue": "^2.5.0",
"vue-onsenui": "~2.3.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "^2.0.1",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-config-airbnb-base": "^11.3.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.7.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.3",
"webpack-bundle-analyzer": "^2.9.0",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"opn": "^5.1.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"rimraf": "^2.6.0",
"url-loader": "^0.5.8",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.0",
"portfinder": "^1.0.13",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-code-push": {},
"cordova-plugin-contacts": {},
"cordova-sms-plugin": {},
"cordova-plugin-ble-central": {},
"cordova-plugin-camera": {},
"cordova-plugin-x-socialsharing": {}
},
"platforms": [
"android"
]
}
}