forked from HorizenOfficial/zencash-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.22 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
{
"name": "zencash-mobile",
"version": "0.0.5",
"description": "Mobile Wallet for ZENCash",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --progress --content-base www/",
"build": "babel src/ -d lib/ && cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"flow-build": "babel --watch src/ -d lib/"
},
"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": "https://zensystem.io",
"devDependencies": {
"autoprefixer": "^7.1.3",
"axios": "^0.16.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"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.6.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-react": "^7.3.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",
"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"
},
"dependencies": {
"cordova-android": "^6.2.3",
"cordova-clipboard": "^1.0.0",
"cordova-plugin-compat": "^1.1.0",
"cordova-plugin-device": "^1.1.6",
"cordova-plugin-file": "^4.3.3",
"cordova-plugin-http": "^1.2.0",
"cordova-plugin-inappbrowser": "^1.7.1",
"cordova-plugin-qrscanner": "^2.5.0",
"cordova-plugin-wkwebview-engine": "^1.1.3",
"danielsogl-cordova-plugin-clipboard": "^1.0.2",
"ios-deploy": "^1.9.2",
"zencashjs": "^1.1.6-a"
},
"cordova": {
"plugins": {
"cordova-plugin-qrscanner": {},
"cordova-plugin-file": {},
"cordova-plugin-http": {},
"cordova-clipboard": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-device": {},
"cordova-plugin-wkwebview-engine": {}
}
}
}