-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1005 Bytes
/
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
{
"name": "com.gerhansquad.salah",
"displayName": "SalahApp",
"version": "1.0.0",
"description": "A muslim prayer reminder app",
"main": "app.js",
"scripts": {
"sync": "npm i && cordova prepare",
"build": "webpack --config webpack.config.js",
"emulate": "npm run build && cordova emulate android",
"device": "npm run build && cordova run android --device"
},
"keywords": [
"ecosystem:cordova"
],
"author": "Gerhansquad",
"license": "MIT",
"devDependencies": {
"cordova-android": "^9.0.0",
"cordova-browser": "^6.0.0",
"cordova-ios": "^6.1.1",
"cordova-plugin-dialogs": "^2.0.2",
"cordova-plugin-geolocation": "^4.1.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.3.0"
},
"cordova": {
"plugins": {
"cordova-plugin-geolocation": {
"GPS_REQUIRED": "true"
},
"cordova-plugin-dialogs": {}
},
"platforms": [
"android",
"ios",
"browser"
]
},
"dependencies": {
"cordova": "^11.0.0",
"cordova-import-npm": "^1.0.33",
"swiper": "^7.0.1"
}
}