-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"name": "com.demo.app",
"displayName": "DemoApp",
"version": "1.0.0",
"description": "A sample Apache Cordova application that responds to the deviceready event.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "watchify www/js/index.js -o www/js/bundle.js -v -t babelify",
"build": "browserify www/js/app.js -p [ css-modulesify -o www/css/cpp.css ] -t babelify | uglifyjs -mc warnings=false > www/js/bundle.js"
},
"babel": {
"presets": [
"latest",
[
"env",
{
"targets": {
"node": "current"
}
}
],
"react"
]
},
"keywords": [
"ecosystem:cordova"
],
"author": "Apache Cordova Team",
"license": "Apache-2.0",
"dependencies": {
"@syncfusion/ej2-base": "^17.4.47",
"@syncfusion/ej2-react-schedule": "^17.4.47",
"axios": "^0.18.1",
"babel": "^6.1.18",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"cldr-data": "^36.0.0",
"cordova-android": "^8.1.0",
"cordova-electron": "^1.1.1",
"css-modulesify": "^0.28.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"nedb": "^1.8.0",
"path": "^0.12.7",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.0.0",
"regenerator-runtime": "^0.13.3",
"uglify-js": "^2.6.0",
"watchify": "^3.6.1"
},
"devDependencies": {
"cordova-plugin-whitelist": "^1.3.4"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {}
},
"platforms": [
"electron",
"android"
]
}
}