-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·88 lines (88 loc) · 2.97 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
{
"name": "framework7-react",
"version": "1.0.0",
"description": "",
"dependencies": {
"cordova-android": "^6.3.0",
"cordova-plugin-android-permissions": "^1.0.0",
"cordova-plugin-camera": "^4.0.3",
"cordova-plugin-file": "^6.0.1",
"cordova-plugin-media-capture": "^3.0.2",
"cordova-plugin-splashscreen": "^5.0.1",
"cordova-plugin-statusbar": "^2.4.1",
"cordova-plugin-whitelist": "^1.3.3",
"crypto-js": "^3.1.9-1",
"cuid": "^2.1.4",
"framework7": "^3.0.1",
"framework7-icons": "^0.9.1",
"framework7-react": "^3.0.1",
"material-design-icons": "^3.0.1",
"monaca-plugin-monaca-core": "^3.2.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-loadable": "^5.5.0",
"unfetch": "^4.0.1",
"webrtc-adapter": "^7.1.1"
},
"scripts": {
"monaca:preview": "npm run dev & npm run watch",
"monaca:transpile": "npm run build",
"monaca:debug": "npm run watch",
"dev": "webpack-serve --open",
"build": "webpack --mode production",
"test": "jest",
"mobile": "cordova clean && monaca transpile && monaca build && adb uninstall com.perdis.prototype && adb install ./platforms/android/build/outputs/apk/android-debug.apk",
"initial-mobile": "cordova clean && monaca transpile && monaca build && adb install ./platforms/android/build/outputs/apk/android-debug.apk",
"watch": "webpack --watch --mode production",
"copy-fonts": "cpy node_modules/framework7-icons/fonts/*.* src/fonts && cpy node_modules/material-design-icons/iconfont/*.{eot,ttf,woff,woff2} src/fonts",
"prepare": "npm run copy-fonts"
},
"cordova": {
"plugins": {
"cordova-plugin-splashscreen": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"monaca-plugin-monaca-core": {},
"cordova-plugin-android-permissions": {},
"cordova-plugin-media-capture": {},
"cordova-plugin-camera": {},
"cordova-plugin-file": {}
},
"platforms": [
"android"
]
},
"repository": {
"type": "git",
"url": "[email protected]:joetm/perdis-client.git"
},
"devDependencies": {
"@fortawesome/fontawesome-pro": "^5.6.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cordova": "^7.1.0",
"cpy-cli": "^2.0.0",
"css-loader": "^1.0.0",
"cssnano": "^4.0.1",
"faker": "^4.1.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.6",
"postcss-url": "^7.3.2",
"progress-bar-webpack-plugin": "^1.11.0",
"react-hot-loader": "^4.3.3",
"style-loader": "^0.21.0",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"webpack-serve": "^2.0.2",
"yargs": "^12.0.1"
}
}