This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.91 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
{
"name": "f7cordova",
"private": true,
"version": "1.0.0",
"description": "F7Cordova",
"repository": "",
"license": "UNLICENSED",
"framework7": {
"cwd": "C:\\dev\\webmobile\\f7cordova",
"type": [
"cordova"
],
"name": "F7Cordova",
"framework": "core",
"template": "tabs",
"bundler": false,
"cssPreProcessor": false,
"theming": {
"customColor": false,
"color": "#007aff",
"darkTheme": true,
"iconFonts": true,
"fillBars": true
},
"customBuild": false,
"pkg": "be.mikadebelder.F7Cordova",
"cordova": {
"folder": "cordova",
"platforms": [
"android"
],
"plugins": [
"cordova-plugin-statusbar",
"cordova-plugin-keyboard",
"cordova-plugin-splashscreen",
"cordova-plugin-wkwebview-engine"
]
}
},
"scripts": {
"start": "npm run serve",
"serve": "http-server ./www/ -o -c 1 -a localhost -p 8080",
"build-cordova": "node ./build/build.js && cd cordova && cordova build",
"build-run-cordova": "node ./build/build.js && cd cordova && cordova run",
"postinstall": "cpy './node_modules/framework7-icons/fonts/*.*' './www/fonts/'"
},
"browserslist": [
"Android >= 7",
"IOS >= 11",
"Safari >= 11",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"dependencies": {
"cordova-android": "^8.1.0",
"cordova-plugin-calendar": "^5.1.5",
"dom7": "^2.1.3",
"dotenv": "^8.2.0",
"firebase-admin": "^8.12.1",
"framework7": "^5.0.4",
"framework7-icons": "^3.0.0",
"template7": "^1.4.2"
},
"devDependencies": {
"cordova-plugin-whitelist": "^1.3.4",
"cpy": "^7.3.0",
"cpy-cli": "^2.0.0",
"http-server": "^0.11.1",
"rimraf": "^3.0.0"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-calendar": {}
},
"platforms": [
"android"
]
}
}