-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "com.vonubisch.app",
"version": "1.0.0",
"main": "src/index.js",
"dependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"classnames": "^2.2.3",
"cordova": "^7.1.0",
"cordova-android": "^6.3.0",
"cordova-plugin-statusbar": "^2.1.3",
"cordova-plugin-whitelist": "^1.3.2",
"eslint-plugin-react": "^7.4.0",
"react": "^15.3.0",
"react-addons-css-transition-group": "^15.3.0",
"react-dom": "^15.3.0",
"react-tappable": "^0.8.3",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"babel-preset-react-hmre": "^1.0.1",
"css-loader": "^0.23.1",
"elementtree": "^0.1.6",
"eslint": "^4.8.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"onsenui": "^2.6.1",
"react-onsenui": "^1.7.0",
"replace": "^0.3.0",
"style-loader": "^0.13.0",
"webpack-merge": "^0.7.3"
},
"scripts": {
"android": "cordova run android",
"ios": "cordova run ios",
"prepare": "node config && webpack && cordova prepare",
"build": "node config && webpack && cordova build",
"start": "node config && HOST=0.0.0.0 webpack-dev-server",
"test": "echo \"No tests..\" && exit 0"
},
"keywords": [],
"author": "Björn S. von Ubisch - vonUbisch.com",
"license": "MIT License",
"displayName": "App",
"cordova": {
"plugins": {
"cordova-plugin-statusbar": {},
"cordova-plugin-whitelist": {}
},
"platforms": [
"android"
]
}
}