-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.8 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
{
"name": "vue-f7-cordova",
"displayName": "VUE F7 CORDOVA",
"version": "0.1.0",
"private": true,
"description": "A sample Framework7-Vue application Cordova application that responds to the deviceready event.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf node_modules/ plugins/ platforms/ package-lock.json yarn.lock",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"c:s": "cordova serve",
"c:r:a": "yarn build && cordova run android --device",
"c:rq": "cordova requirements",
"res": "crgen -p android,ios"
},
"dependencies": {
"axios": "^0.18.0",
"cordova-android": "^8.0.0",
"cordova-ios": "^5.0.0",
"cordova-plugin-camera": "^4.0.3",
"cordova-plugin-splashscreen": "^5.0.2",
"cordova-plugin-statusbar": "^2.4.2",
"cordova-plugin-whitelist": "^1.3.3",
"core-js": "^2.6.5",
"framework7": "^4.3.0",
"framework7-vue": "^4.3.0",
"register-service-worker": "^1.6.2",
"vue": "^2.6.10",
"vue-axios": "^2.1.4",
"vuex": "^3.1.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.6.0",
"@vue/cli-plugin-eslint": "^3.6.0",
"@vue/cli-plugin-pwa": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"cordova-res-generator": "^0.4.2",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.2",
"vue-template-compiler": "^2.6.10"
},
"keywords": [
"cordova",
"vue",
"framework7"
],
"author": "NieLamu",
"license": "MIT",
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-statusbar": {}
},
"platforms": [
"android",
"ios"
]
}
}