forked from HorizenOfficial/zencash-mobile
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·107 lines (107 loc) · 3.24 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "zclassic-mobile",
"version": "0.0.12",
"description": "Mobile Wallet for Zclassic",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --progress --content-base www/",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZencashOfficial/zencash-mobile.git"
},
"author": "Kendrick Tan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZencashOfficial/zencash-mobile/issues"
},
"homepage": "http://zclassic.org",
"devDependencies": {
"autoprefixer": "^7.1.3",
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"bip32-utils": "^0.10.0",
"bitcoinjs-lib": "^3.1.1",
"bs58check": "^2.0.2",
"chance": "^1.0.11",
"country-data": "0.0.31",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"eslint": "^4.12.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.2",
"flow-bin": "^0.54.1",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"moment": "^2.18.1",
"ncp": "^2.0.0",
"node-uuid": "^1.4.7",
"onsenui": "2.5.3",
"postcss-loader": "^2.0.6",
"promise": "^8.0.1",
"qrcode.react": "^0.7.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-fontawesome": "^1.6.1",
"react-hot-loader": "^3.0.0-beta.6",
"react-onsenui": "^1.0.4",
"react-redux": "^5.0.6",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.1.0",
"sentencer": "^0.1.5",
"simple-plist": "^0.2.1",
"style-loader": "^0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"url-loader": "^0.5.9",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"zclassicjs": "git://github.com/BTCP-community/zclassicjs.git"
},
"dependencies": {
"cordova-android": "^6.2.3",
"cordova-clipboard": "^1.1.1",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-device": "^1.1.7",
"cordova-plugin-file": "^4.3.3",
"cordova-plugin-google-analytics": "^1.8.3",
"cordova-plugin-http": "^1.2.0",
"cordova-plugin-inappbrowser": "^1.7.2",
"cordova-plugin-qrscanner": "^2.5.0",
"cordova-plugin-whitelist": "^1.3.3",
"cordova-plugin-wkwebview-engine": "^1.1.4",
"danielsogl-cordova-plugin-clipboard": "^1.0.2"
},
"cordova": {
"plugins": {
"cordova-plugin-qrscanner": {},
"cordova-plugin-file": {},
"cordova-plugin-http": {},
"cordova-clipboard": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-device": {},
"cordova-plugin-wkwebview-engine": {},
"cordova-plugin-whitelist": {},
"cordova-plugin-google-analytics": {}
},
"platforms": [
"android"
]
}
}