This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.26 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
{
"name": "pets-reminder",
"version": "1.0.0",
"description": "Brand new cordova project with framework7 - vue - webpack!",
"repository": "",
"scripts": {
"init-browser": "mkdir -p www && cordova platform add browser",
"init-ios": "mkdir -p www && cordova platform add ios",
"init-android": "mkdir -p www && keytool -genkey -v -keystore android.keystore -storepass 000000 -alias pet -keypass 000000 -keyalg RSA -keysize 2048 -validity 10000 -dname \"C=US, O=Android, CN=Android Debug\" && cordova platform add android",
"build-browser": "cordova build browser --no-telemetry --release",
"build-ios": "cordova build ios --no-telemetry --release",
"build-android": "cordova build android --no-telemetry --release"
},
"keywords": [
"ecosystem:cordova"
],
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"cheerio": "^1.0.0-rc.3",
"chokidar": "^3.1.1",
"clean-webpack-plugin": "^3.0.0",
"cordova-plugin-local-notification": "git+https://github.com/katzer/cordova-plugin-local-notifications.git#master",
"cordova-plugin-whitelist": "^1.3.4",
"css-loader": "^3.2.0",
"current-device": "^0.10.0",
"epipebomb": "^1.0.0",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"path": "^0.12.7",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"svg-url-loader": "^3.0.2",
"terser-webpack-plugin": "^2.3.0",
"url-loader": "^3.0.0",
"vue-hot-reload-api": "^2.3.4",
"vue-html-loader": "^1.2.4",
"vue-loader": "^15.7.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.11.1",
"apexcharts": "^3.15.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"cordova-android": "^8.1.0",
"cordova-browser": "^6.0.0",
"cordova-ios": "^5.1.1",
"cordova-plugin-app-version": "^0.1.9",
"cordova-plugin-badge": "^0.8.8",
"cordova-plugin-camera": "^4.1.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-screen-orientation": "^3.0.2",
"cordova-plugin-splashscreen": "^5.0.3",
"es6-promise-plugin": "^4.2.2",
"fastclick": "^1.0.6",
"framework7": "^5.1.3",
"framework7-icons": "^3.0.0",
"framework7-vue": "^5.1.3",
"loglevel": "^1.6.4",
"long-press-event": "^2.2.1",
"material-design-icons": "^3.0.1",
"vue": "^2.6.10",
"vue-apexcharts": "^1.5.2",
"vue-i18n": "^8.15.3",
"vuedraggable": "^2.23.2"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-app-version": {},
"cordova-plugin-file": {},
"cordova-plugin-camera": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-local-notification": {}
},
"platforms": [
"android",
"browser",
"ios"
]
}
}